是否无法将Ionic应用程序连接到localhost API

时间:2018-02-01 02:40:23

标签: ionic-framework ionic3

我已经尝试了所有尝试的东西。我试过代理,我已经尝试在我的API上允许CORS。我想我已达到Google搜索范围。我真的没办法用localhost API测试我的应用程序吗?我尝试了这个,在我的ionic.config.json中我添加了这个:

  "proxies": [
    {
      "path": "/api",
      "proxyUrl": "http://localhost:8080"
    }

然后在我的帖子请求中,我这样做了:

this.http.post('http://localhost:8100/api/users', payload).map(res => res.json())
.subscribe(res => {
  console.log("The result is");
  console.log(res);
}, error =>{
  console.log(error);
});

API的网址为http://localhost:8080/users

我在很多方面都试过这个,但我没有成功。我正在使用ionic serve来运行我的应用。拜托,任何可以帮助我解决这个问题的人。我现在非常绝望。

0 个答案:

没有答案