import React,{Component} from 'react';
import {Image,View} from 'react-native';
export default class Demo03Component extends Component{
constructor(){
super();
this.state={
imgUrl:'http://176.51.6.120:80/ajia_code/img/404/404_img1.png'
}
}
render(){
return <View>
<Image style={{width:50,height:50}} source={require('../../../img/1.jpg')}></Image>
<Image style={{width:50,height:50}} source={{uri:"http://176.51.6.120:80/ajia_code/img/404/404_img1.png"}}></Image>
</View>
}
}
后来才发现图片后缀名都为小写才对,也就是图片真实后缀和代码都是.jpg才对。
react native 路径对,但读取图片错误问题
最新推荐文章于 2024-02-26 16:16:08 发布