Angular cli - 如何在JSON响应中为链接添加代理

时间:2018-03-20 05:05:07

标签: angular proxy angular-cli

我们遇到了CORS问题,因此我们通过使用以下配置配置proxy.conf.json文件来添加代理

  {
  "/restapi/*": {
    "target": "http://localhost:8080",
    "secure": false,
    "logLevel": "debug",
    "changeOrigin": true
   }
 }

CORS问题已通过上述代理解决,现在所有响应都包含我下一个请求的链接,如下所示,响应链接仍然直接指向服务器(在端口8080上运行)。这是非常期待的,因为我们没有做任何事情来修补响应的有效载荷中的链接,有关如何解决此问题的任何建议吗?

    "_links": {
"self": {
"href": "http://localhost:8080/restapi/services"
},
"http://identifiers.emc.com/product-info": {
"href": "http://localhost:8080/restapi/product-info"
},
"http://identifiers.emc.com/tenants": {
"href": "http://localhost:8080/restapi/systemdata/tenants"
},
"http://identifiers.emc.com/tenant": {
"href": "http://localhost:8080/restapi/systemdata/tenants/97bf9fd5-710c-47e8-984e-050ebbf212e3"
}

0 个答案:

没有答案