我试图从格式为.JPG的本地资源加载图像.但每次它给我跟随错误.
做反应原生支持.JPG格式?谁可以帮我这个事 ?谢谢…
最佳答案 如果您确定image_path是正确的,那么您可以将文件夹中的图像从大写字母(.JPG)重命名为小写字母(.jpg).
测试了Windows的这种情况,可以使用上述解决方案重现并修复它.
react-native版本:0.23.1
为了澄清:
var yourPicture = require('./yourPathToYourPicture/picture.jpg); //Working
var yourPicture = require('./yourPathToYourPicture/picture.JPG); //Not-Working
Solution to solve the capital letter problem: Save your picture in your project folder with lower case letters yourPicture.JPG -> yourPicture.jpg
使用你的形象
render(){
return(
<Image source={yourPicture}/>
);
}