我仅在iPhone中收到Ionic本机http响应的延迟

时间:2018-09-17 04:54:14

标签: ios http ionic3 http-post

使用Ionic本机HTTP从API获取响应时遇到问题。有谁知道如何解决iPhone中的这个问题。我已经花了几个小时寻找解决方案。它可以在其他设备和浏览器上正常运行。任何帮助,将不胜感激。你们知道这背后的原因吗?

this.httpGet.post(url,data,{}).then(data=>{
 console.log("data",JSON.stringify(data));
 let json_data = JSON.parse(data.data); 
 resolve(json_data)
}, (err) => {
 console.log(JSON.stringify(err));
 resolve("error");
});

1 个答案:

答案 0 :(得分:0)

在模拟器中运行您的应用程序 转到开发人员选项,选择您的应用程序 enter image description here

,然后点击网络以跟踪您的所有请求 enter image description here

希望您会发现请求出了什么问题。