Angular代理配置

时间:2019-12-03 19:53:45

标签: angular typescript

我进行了如下的api调用:

http.post(`${environment.apiUrl}/api/login`);

当我们读取相应的URL时,这对所有构建(prod,stage,qa)都适用。

我如何使用proxy.config.json在本地服务器中运行它:我做了如下所述的工作:

{
  "${environment.apiUrl}/api/*": {
   "target": "https:serverIp/folder/",
   "secure": false,
   "logLevel": "debug",
    "changeOrigin": true
  }
}

1 个答案:

答案 0 :(得分:1)

您不能在JSON文件中使用字符串替换令牌。在文件中硬编码路径。