11

我也已将此发布到相关问题上http-proxy

我正在使用http-proxywithexpress所以我可以拦截客户端和 api 之间的请求,以便添加一些 cookie 进行身份验证。

为了进行身份验证,客户端必须发送一个 POST 请求,x-www-form-urlencoded其内容类型为。所以我使用body-parser中间件来解析请求体,这样我就可以在请求中插入数据。

http-proxy据说使用有问​​题,body-parser因为它将主体解析为流并且从不关闭它,因此代理永远不会完成请求。

http-proxy 示例中有一个解决方案,可以在我尝试使用解析后“重新传输”请求。我也尝试connect-restreamer在同一问题中使用该解决方案,但没有成功。

我的代码看起来像这样

var express = require('express'),
    bodyParser = require('body-parser'),
    httpProxy = require('http-proxy');

var proxy = httpProxy.createProxyServer({changeOrigin: true});
var restreamer = function (){
  return function (req, res, next) { //restreame
    req.removeAllListeners('data')
    req.removeAllListeners('end')
    next()
    process.nextTick(function () {
      if(req.body) {
        req.emit('data', req.body) //error gets thrown here
      }
      req.emit('end')
    })
  }
}

var app = express();

app.use(bodyParser.urlencoded({extended: false, type: 'application/x-www-form-urlencoded'}));
app.use(restreamer());

app.all("/api/*", function(req, res) {
    //modifying req.body here
    //
    proxy.web(req, res, { target: 'http://urlToServer'});
});

app.listen(8080);

我收到这个错误

/Code/project/node_modules/http-proxy/lib/http-proxy/index.js:119
throw err;
      ^
Error: write after end
    at ClientRequest.OutgoingMessage.write (_http_outgoing.js:413:15)
    at IncomingMessage.ondata (_stream_readable.js:540:20)
    at IncomingMessage.emit (events.js:107:17)
    at /Code/project/lib/server.js:46:25
    at process._tickCallback (node.js:355:11)

我试图调试流程,但我正在抓住稻草。请问有什么建议吗??

4

3 回答 3

2

我遇到了这个问题,我无法重新开始工作。这是我提出的解决方案,尽管很粗糙,可能不适合您的项目。

我最终将 body-parser 中间件移到了路由本身,而不是路由中间件,因为我的项目只有几个路由,并且重置是通过我的 http-proxy 中间件进行的。

所以而不是这个:

router.use(bodyParser.json());

router.get('/', function(){...});

router.use(httpProxy());

我这样做了:

router.get('/', bodyParser.json(), function(){...})

router.use(httpProxy())
于 2015-09-10T16:31:08.830 回答
0

我遇到了同样的问题http-proxy-middleware。在阅读了@ChrisMckenzie 的回答后,我决定简单地将正文解析器中间件移到代理中间件之后。

所以而不是这个:

router.use(bodyParser.json());

router.get('/', function(){...});

router.use(httpProxy());

我这样做了:

router.use(httpProxy());

router.use(bodyParser.json());

router.get('/', function(){...});
于 2021-11-10T14:33:55.353 回答
-2

http-proxy 在处理 POST 正文方面是出了名的糟糕,尤其是在最新版本的 Node 中;和中间件黑客并不总是适用于所有 POST 请求。我建议您使用像 NGINX 或 HAPROXY 中的专用 http 代理引擎,这些引擎效果最好。

于 2015-09-10T16:19:15.397 回答