React Native IOS映像不更新

时间:2017-11-30 18:50:35

标签: react-native-ios

我有一个图像组件需要在状态更改后定期更新。该应用程序在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});

0 个答案:

没有答案