我的应用程序的启动画面从本地Rating.objects.get(**user_id**=user.id, **movie_id**=movie.id)
子目录加载图像。我了解本地图像文件需要为asset/image/
。因此,图像为require
并分配给const。 require
是Image
的{{1}}:
import
函数返回:
react-native-elements 2.0.2
但是图像未显示,并且在图像位置有一个空白块。为了进行测试,我尝试了以下在线图像,该图像已成功加载并显示在应用程序中:
import { Image } from 'react-native-elements';
const bgimage = require('../../../asset/image/ltx-61.jpg');
结果是相同的。没有显示图像,并且有一个空白块。但是,如果应用程序从return (
<View style={styles.viewStyles}>
<Image
source={bgimage}
style={{ width: 100, height: 100 }}
/>
</View>
);
}
导入图像:
source={{uri:"https://s3.amazonaws.com/uifaces/faces/twitter/brynn/128.jpg"}}
然后图像成功加载。为什么图像没有与react-native-elements中的react-native 0.62.2
一起显示?