我有一个图像组件需要在状态更改后定期更新。该应用程序在Android上运行良好,但图像不会加载到IOS上。此外,链接在https中并且在IOS上正常工作,但在uri状态更改后,图像区域为空白。同样在OnloadStart事件之后,onLoad事件不会在IOS上触发。
<Image
source={{uri: this.state.uploadUrl}}
style = {{resizeMode:'stretch',width:'auto',height:125,marginTop:50,marginBottom:15}}
onLoad={() => {
alert('loaded image! ')
}}
onLoadStart={() => {
alert('load starting: ' + this.state.uploadUrl)
}}
/>
this.setState({isTrying:false,uploadUrl: responseJson.data.uploadUrl,adUrl : responseJson.data.adUrl});