我正在研究离子2.这个代码在Android设备上运行良好,但是在iOS设备api调用不起作用,并且在Xcode控制台中看不到任何错误我尝试了NSExceptionAllowsInsecureHTTPLoads但它无效。
sendMsg(data)
{
this.headers = new Headers();
this.headers.append('Content-Type','application/json');
let body=data;
return this.http.post
('https://www.example.com/api/',JSON.stringify(body),
{headers:this.headers})
.map(res => res.json());
}