ng7 设置http proxy
Posted ajanuw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ng7 设置http proxy相关的知识,希望对你有一定的参考价值。
proxy.conf.json
{
"/api": {
"target": "http://localhost:5000",
"secure": false,
"pathRewrite": {
"^/api": ""
}
}
}
使用
ngOnInit() {
this.msg$ = this.http.get("/api/ng7", {
responseType: "text",
});
}
后台代码片段
@Controller()
export class AppController {
@Get('ng7')
ng7(): string {
return 'hello ng7';
}
}
以上是关于ng7 设置http proxy的主要内容,如果未能解决你的问题,请参考以下文章
linux设置http/https proxy及忽略proxy的方法