angular8代理被定向到localhost:4200

时间:2019-09-03 02:09:01

标签: proxy angular8

我已经为localhost:5000中的服务的api调用配置了代理。 但是,代理被定向到localhost:4200。即角度应用程序。 “ http://localhost:4200/api/的Http错误响应:找不到404”

我的proxy.conf.json:

{
  "/api": {
    "target": "https://127.0.0.1:5000/",
    "secure": false,
    "changeOrigin": true
  }
}

我对服务中的网址的调用:

private apiurl = "/api";
   constructor(private http: HttpClient) { }
   getData() {
      return this.http.get(this.apiurl);
   }

我已经在package.json中编辑了“开始”

"start": "ng serve --proxy-config proxy.conf.json",

我没有任何编译错误。

我希望/ api转到代理配置文件中提供的目标

1 个答案:

答案 0 :(得分:0)

对于这个问题,我感到非常抱歉,问题出在我的后端路由中