http.post无法在ios ionic 2中运行

时间:2017-06-13 10:56:21

标签: typescript ionic-framework ionic2

我正在研究离子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());
  }

0 个答案:

没有答案