我也已将此发布到相关问题上http-proxy
。
我正在使用http-proxy
withexpress
所以我可以拦截客户端和 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)
我试图调试流程,但我正在抓住稻草。请问有什么建议吗??