做ionic3项目时,发现运行ios时http请求失败,而android版就没有问题,能正常请求数据,然后将错误打印出来,发现返回 response with status: 0 for url: null
出现这个问题的原因是ionic默认使用的是WK WebView,但是Ios系统如果使用WK WebView http请求就会出错,返回上面那个错误。官方文档中给出了答案,有兴趣的可以看看这个链接WKWebview。
解决方法:
1.将WK WebView降级为UI WebView,具体操作是在ionic项目的config.xml文件中添加
<preference name="CordovaWebViewEngine" value="CDVUIWebViewEngine" />
2.将cordova-plugin-ionic-webview这个插件从项目中移除
ionic cordova plugin remove cordova cordova-plugin-ionic-webview --save
3.使用官方提供的http插件