Ionic2 / Angular2 CORS设置

时间:2016-10-14 20:01:57

标签: cordova angular cors

请帮我在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
        });

感谢。

1 个答案:

答案 0 :(得分:0)

嗯......看起来我自己想通了。 我这样做了: 1)离子平台rm android 2)离子平台添加android 这很奇怪,但就像一个魅力。