React-native loading image over https works while http does not work

后端 未结 2 1478
面向向阳花
面向向阳花 2020-12-06 18:59

I want to load an Image in the iOS simulator over a http uri as source. But nothing is shown on the screen expect the wireframe which can be made visible with the inspector.

相关标签:
2条回答
  • 2020-12-06 19:44

    The problem is that your are trying to load the image from a http connection and not from a https connection as it is demanded by apple. Try if your code works with another uri which uses https instead of http. In Android it should work fine with either http or https. Read more at https://github.com/facebook/react-native/issues/8520 and http://www.techrepublic.com/article/wwdc-2016-apple-to-require-https-encryption-on-all-ios-apps-by-2017/.

    If you really want to load something over http you can edit the info.plist file and add your exception there. More detailed info here https://ste.vn/2015/06/10/configuring-app-transport-security-ios-9-osx-10-11/

    0 讨论(0)
  • 2020-12-06 19:52

    add in info.plist

    <key>NSAppTransportSecurity</key>
     <dict>
     <!--Include to allow all connections (DANGER)-->
        <key>NSAllowsArbitraryLoads</key>
        <true/>
     </dict>
    
    0 讨论(0)
提交回复
热议问题