显示我从React Native中的JSON文件访问的本地图像时出现问题

时间:2019-02-14 20:25:16

标签: reactjs react-native

我正在使用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')",

试图阅读什么可以在网上找到,但是,仍然没有。

1 个答案:

答案 0 :(得分:0)

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