在React Native中显示我从JSON文件访问的本地映像时的问题



我正在使用我制作的json文件中的flatlist和renderitem渲染数据,但似乎无法显示我已添加到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')",

试图阅读在线上有效的内容,但仍然没有。

尝试添加source = {{uri:item.img}}

相关内容

  • 没有找到相关文章

最新更新