我正在使用Flatlist和renderItem从我制作的JSON文件中渲染数据,但似乎无法显示我添加到JSON文件中的本地图像。
this is how im showing the data from each item
renderItem({item}) {
const handlePress = () => {
this.props.onPress(item);
}
return (
<View>
<TouchableHighlight
onPress={handlePress}
>
<>
<Image source={item.img}/>
<Text>{item.name}</Text>
</>
</TouchableHighlight>
</View>
);
}
This is how im writing the img path in my json file
"img":"require('../assets/images/legends/bangalore/bangalore-half.png')",
试图阅读什么可以在网上找到,但是,仍然没有。
答案 0 :(得分:0)
尝试添加source = {{uri:item.img}}