【发布时间】:2017-08-18 10:48:42
【问题描述】:
我已经为网络图像实现了图像 onError 方法,并且错误地尝试使用默认图像更新视图但源属性无效
onLoadError=(event)=>{
alert('Img load error');
this.imgPayIcn.setNativeProps({
source :{uri:'https://facebook.github.io/react/img/logo_og.png'} //not able to update view with new image... no effect
});
渲染方法
<Image ref={(ref) => this.imgPayIcn = ref} source={this.props.source} style={{height:50,width:50}} resizeMode='cover' onError={this.onLoadError}/>
【问题讨论】:
标签: react-native