0
我選擇從JSON圖像,並希望加載在lazyimageload延遲加載動態畫面圖像
renderRow = (file) => {
var imageURL = require(file.image_url);
return <View
style={styles.view}>
<LazyloadView
host="listExample"
style={styles.file}>
<LazyloadImage
host="listExample"
style={styles.image}
source={imageURL}
animation={false}/>
<View style={styles.detail}>
<Text style={styles.name}>{file.first_name} {file.last_name}</Text>
<Text><Text style={styles.title}>email: </Text><Text style={styles.email}>{file.email}</Text></Text>
<Text style={styles.ip}><Text style={styles.title}>last visit ip: </Text>{file.ip_address}</Text>
</View>
<View style={styles.gender}>
<Text style={[styles.genderText, file.gender === 'Male' ? styles.male : styles.female]}>{file.gender}</Text>
</View>
</LazyloadView>
</View>;
};
但是,得到的例外「要求未知模塊」 ./images/image.png」。如果您確定模塊在那裏,請嘗試重新啓動打包程序或運行npm install。任何人都可以請幫忙
但我必須加載從JSON文件中的圖像,並有一個與每個行項目相關聯的一個圖像URL。圖像甚至數據都是動態的 –