React Native:设备中HTTPS的网络请求失败

时间:2019-05-04 11:50:02

标签: ios react-native react-native-ios

我对REST API使用https连接,通过iPhone设备命中POST请求时出现“网络请求失败”错误,但在模拟器中,它没有任何问题。

注意:如果我在发布模式下生成IPA,一段时间后它会开始工作,此后再次遇到相同的网络请求失败错误。

我已将info.plist更改为如下所示

<key>NSAppTransportSecurity</key>
<dict>
  <key>NSAllowsArbitraryLoads</key>
  <true/>
  <key>NSExceptionDomains</key>
  <dict>
    <key>localhost</key>
    <dict>           
      <key>NSExceptionAllowsInsecureHTTPLoads</key>
      <true/>
    </dict>
  </dict>
</dict>

但仍然,仅在iPhone设备上面临此问题。

0 个答案:

没有答案