1

突然之间,在我将 xcode 更新到 8.3.2 后,我所有的应用程序都收到 Newtwork 请求失败,

Network request failed
TypeError: Network request failed

我尝试更改 /ios/[projectname]/info.plist 中的值,但仍然出现相同的错误,即使我正在调用 https:// 端点。

<key>NSAppTransportSecurity</key>
    <!--See http://ste.vn/2015/06/10/configuring-app-transport-security-ios-9-osx-10-11/ -->
    <dict>
        <key>NSExceptionDomains</key>
        <dict>
            <key>localhost</key>
            <dict>
                <key>NSExceptionAllowsInsecureHTTPLoads</key>
                <true/>
            </dict>
        </dict>
    </dict>

重现步骤:- $ react-native init newProject && cd newProject && react-native run-ios

打开 index.ios.js 并添加测试

            <Button title="fetch" onPress={async ()=>{
              const r = await fetch('http://localhost/ivf/system/settings');
              console.log(r);
            }}/>
            <Button title="fetchs" onPress={async ()=>{
              const r = await fetch('https://ivf.simpleinfroamtics.com/system/settings').catch(console.log);
              console.log(r);
            }}/>

通过单击两个链接,它们都将因 newtwok 请求失败而失败。

我尝试使用 xhr insteed

componentDidMount(){
                  <Button title="console" onPress={()=>{
                      console.log('log');
                      console.debug('debug');
                      console.info('info');
                      console.warn('warn');
                    }}/>
                    <Button title="fetch" onPress={async ()=>{
                      const r = await fetch('http://localhost/ivf/system/settings');
                      console.log(r);
                    }}/>
                    <Button title="fetchs" onPress={async ()=>{
                      const r = await fetch('https://ivf.simpleinfroamtics.com/system/settings').catch(console.log);
                      console.log(r);
                    }}/>
}

但完全相同的错误。

我们怎样才能解决这个问题???我已经完成了我的整个应用程序,我正在等待解决这个问题,以便我可以发布:(

谢谢

4

1 回答 1

1

您的例外仅允许与非本地主机 url 的非安全连接。您需要更改它以尝试使用 http 协议(例如“ http://ivf.simpleinfroamtics.com/system/settings ”)。如果您想通过 https 进行连接,则需要找出该 URL 违反 ATS 政策的原因。可能是它不支持 TLS 1.2,或者它不支持前向保密,或者密钥不足。

要测试 URL 是否符合 ATS,nscurl --ats-diagnostics <url>请在 Mac 上使用该命令。您可以在本文中找到更多关于 ATS 的一般信息,以及如何使用/解释上述 nscurl 命令的结果

最后,要允许 localhost 连接,您需要添加NSAllowsLocalNetworking值为 true 的密钥,以允许您的应用不安全地连接到本地网络资源,包括 localhost。

我还建议提高你的 CFNETWORK_DIAGNOSTICS 级别,这样你就可以准确地看到失败的原因。您可以在此处了解更多信息。

于 2017-05-22T03:43:13.060 回答