我对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设备上面临此问题。