我想從JSON文件收集圖像源,但每當我使用JSON對象源時,我得到一個模塊錯誤。有沒有解決方法?React-Native動態圖像源?
JSON文件:
{
"Image": {"source": "./SourceFolder/ImageFile.png"}
}
JS文件
const file = require('./jason.json');
var jason = JSON.stringify(file.Image);
jason = JSON.parse(jason);
<Image source={require(jason.source)} />
檢查我的答案在這裏:https://stackoverflow.com/questions/44468500/image-react-native-not-working –
@JigarShah感謝,但沒有任何工作。我想我被困在這裏。可能沒有辦法從json存儲一堆圖像源並相應地使用它們。 – drewvy22
試試這個,https://stackoverflow.com/questions/36375532/react-native-rendering-multiple-images –