我还发布了这个to the relevant issue on http-proxy
。
我正在http-proxy
使用express
,因此我可以拦截客户端和api之间的请求,以便添加一些Cookie进行身份验证。
为了进行身份验证,客户端必须发送带有x-www-form-urlencoded
的POST请求作为内容类型。所以我使用body-parser
中间件来解析请求体,以便我可以在请求中插入数据。
http-proxy
在使用body-parser
时遇到问题,因为它将主体解析为流并且从不关闭它,因此代理永远不会完成请求。
There is a solution in the http-proxy examples在解析了我尝试使用的请求之后“重新流式传输”。我也尝试使用connect-restreamer
solution in the same issue而没有运气。
我的代码看起来像这样
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)
我试图调试流程,但我正在抓住吸管。有什么建议吗?