使用请求模块的Node.JS代理

时间:2016-12-09 22:36:12

标签: node.js express proxy request

我有一个Express.JS应用程序,它使用请求节点模块对路由进行代理调用。这与NodeJS V0.10.28配合得很好;但是,升级到NodeJS V4.4.7会导致失败 - 抛出错误“错误:写完后”。

我是NodeJS的新手;所以我感谢你的帮助。

var bodyParser=require('body-Parser');
app.use(bodyParser.json({limit: '100mb'}));
app.use(bodyParser.urlencoded({extended: false}));

....
....

app.use('/relay', function (req, res) {
        var request = require('request'),
            proxyUrl = 'http://abc.proxy.xyz:12345',
            apiEndPoint = "https://aaa.bbb.ccc/svc";

        req.pipe(request.post(apiEndPoint,{ proxy: proxyUrl, form: req.body}, function (error, response, body) {

            if (error) {
                console.log(error)
            } else {
                console.log("No error here.")
            }

            res.end();

        })).pipe(res);   
});

1 个答案:

答案 0 :(得分:0)

对于子孙后代,这是我的解决方案,万一其他人应该面对同样的问题。

问题在于使用中间件正文解析器:正文解析器读取完成请求 - 因此流已到达终点。因此,问题中显示的req.pipe() - in / relay路由 - 没有任何内容可读,也不会重新启动流。

但是,返回的错误消息“写完后”是非常模糊的。为什么我没有遇到Node.JS V0.10.28的这个问题也是一个谜。报告的问题在V4.4.7中被注意到

因此,为了解决正文解析器问题,我将/ relay路由移到了对body-parser的调用之上:

app.use('/relay', function (req, res) {
        var request = require('request'),
            proxyUrl = 'http://abc.proxy.xyz:12345',
            apiEndPoint = "https://aaa.bbb.ccc/svc";

        req.pipe(request.post(apiEndPoint,{ proxy: proxyUrl, form: req.body}, function (error, response, body) {

            if (error) {
                console.log(error)
            } else {
                console.log("No error here.")
            }

            res.end();

        })).pipe(res);   
});

....
....

var bodyParser=require('body-Parser');
app.use(bodyParser.json({limit: '100mb'}));
app.use(bodyParser.urlencoded({extended: false}));