请帮我在Ionic2 / Angular2应用程序上找出CORS。 我试图通过http' GET'来获取数据。请求。 当我跑步  $ npm run build'在笔记本电脑上,我得到了预期的回应。 当我正在运行' $ cordova运行android'时,我总是得到响应状态:0表示URL:null'。 以下是代码段:
this.http.get('https://httpbin.org/ip')
.subscribe((data: any) => {
this.result = data._body; // {"origin": "31.43.103.88"} on laptop
}, error => {
this.result = error; // 'Response with status: 0 for URL: null' on android
});
感谢。
答案 0 :(得分:0)