我最近将我的xcode升级到最新版本(8.3.3),在此升级之前,我能够使用以下代码在我的应用中看到我想要的图像:
<Image source={require('../images/burger.png')}/>
升级后,加载的图像是一些随机图像,稍后在我的日期选择器代码中使用。使用检查器后,此图像具有以下路径:
__packager_asset:
true
height:
64
scale:
1
uri:
"http://localhost:8081/assets/node_modules/react-native-datepicker/date_icon.png?platform=ios&hash=1edd5017f455b09c608e175b1285c06d"
width:
64
有关为何会发生这种情况的任何想法?
答案 0 :(得分:0)
出于某种原因运行以下内容解决了此问题:
watchman watch-del-all
rm -rf node_modules && npm install
npm start -- -- reset-cache