0

我正在使用Angular Seed 项目并尝试为在不同端口上运行的后端服务的 api 请求设置代理。

到目前为止我的代码:

/* Add proxy middleware */
this.PROXY_MIDDLEWARE = [
  require('http-proxy-middleware')({
    ws: false,
    target: 'http://localhost:5555',
    router: {
      // when request.headers.host == 'dev.localhost:3000',
      // override target 'http://www.example.org' to 'http://localhost:8000'
      //'http://localhost:5555/basepath/api' : 'http://localhost:7000/api'
    }
  })
];

基本上我需要做的是将任何与http://localhost:5555/basepath/ api 匹配的 api 路由到http://localhost:7000/api虽然我似乎无法使用 http-proxy-middleware 让它工作。我最初使用代理中间件工作,但由于我需要修改请求标头而切换,似乎只能使用 http-proxy-middleware 完成。

4

1 回答 1

1

花了一些时间试图完成这项工作,这就是我最终在构造函数中添加到 project.config.ts 的内容。

   /* Add proxy middleware */
    this.PROXY_MIDDLEWARE = [
      require('http-proxy-middleware')(
        '/basepath/api', {
        ws: false,
        onProxyReq: this.onProxyReq,
        target: 'http://localhost:7000',
        pathRewrite: {
          '^/basepath/api' : '/api'
        }
      })
    ];

这是我在构造函数下面包含的函数,用于向任何被代理的请求添加标头

onProxyReq(proxyReq: any , req: any, res: any) {
  // add custom headers to request
  proxyReq.setHeader('header_name', 'value');
}
于 2017-03-28T15:48:17.577 回答