我在端口1512上设置了一个ASP.NET核心服务器,我的Ionic 2 dev服务器在端口1513上运行。我希望能够打开localhost:1513,这样我就可以获得dev的实时重载功能服务器,但是当我的api请求被调用时,我希望他们使用端口1512,以便从后端服务器检索。
我设置了webpack和angular,但是使用Ionic 2我很难让它正常工作。
答案 0 :(得分:0)
检查this answer以及问题的评论。
对于本地开发,您可以更改
this.user = this.http.get("api/account/userinfo")
到
this.user = this.http.get("localhost:1512/api/account/userinfo")