如何在Express.js中管理来自请求的响应?

时间:2016-03-30 09:44:44

标签: node.js request

所以我使用request库来获取URL。我想把它传递给Express中的response,但我还没弄明白该怎么做。

function routeHandler(req, res) {
...
request.getAsync(theUrl)
    .spread(function(response,body) {
        // how to pipe it to res here?
    })

1 个答案:

答案 0 :(得分:4)

它受请求库的支持。我应该仔细阅读文档。

var reply = request(actualUrl)
req.pipe(reply)
reply.pipe(res)