仅在Postman上的Chrome上未显示错误500预览

时间:2018-09-25 13:44:36

标签: angular google-chrome http

我正在使用.net核心api开发Angular 4应用,当出现错误500时,我可以在Postman上看到详细的错误,但在Chrome的“预览”标签中看不到,是否也可以在Chrome预览中看到它?

Postman上的错误500,显示根本错误 enter image description here

Chrome出现错误500,白色预览 enter image description here

1 个答案:

答案 0 :(得分:1)

出于安全性考虑,您不能调用托管应用程序的URL。有关更多信息,您可以查看此link

在角度项目的根文件夹中创建一个proxy.conf.json

{
  "/api": {
    "target": "http://localhost:5003",
    "secure": false
  }
}

然后使用--proxy-config选项启动开发服务器:

ng serve --proxy-config proxy.conf.json

然后可以使用相同的端口http://localhost:4200/api/*调用api。