码迷,mamicode.com
首页 > Web开发 > 详细

ng7 设置http proxy

时间:2019-01-06 11:58:41      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:ref   gui   ppc   使用   ret   port   pre   angular   turn   

看文档

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

标签:ref   gui   ppc   使用   ret   port   pre   angular   turn   

原文地址:https://www.cnblogs.com/ajanuw/p/10227549.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!