突然之间,在我将 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);
}}/>
}
但完全相同的错误。
我们怎样才能解决这个问题???我已经完成了我的整个应用程序,我正在等待解决这个问题,以便我可以发布:(
谢谢