配置代理cli Angular以调用另一个服务器

时间:2019-04-03 06:51:19

标签: angular proxy

我为cli设置了代理。设置如下。

 {
  "/api/*": {
   "target": "http://localhost:3000",
   "secure": false,
   "logLevel": "debug"
    },
   "/ngapimock/*": {
   "target": "http://localhost:3000",
   "secure": false,
   "logLevel": "debug"
  }
}

并按如下所示运行应用程序

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

但是我有一个问题,如果请求发送到应用程序的第三方服务器,我该如何使用cli angular为它做代理

例如通话

https://test/epc/1

0 个答案:

没有答案