所以我使用request
库来获取URL。我想把它传递给Express中的response
,但我还没弄明白该怎么做。
function routeHandler(req, res) {
...
request.getAsync(theUrl)
.spread(function(response,body) {
// how to pipe it to res here?
})
答案 0 :(得分:4)
它受请求库的支持。我应该仔细阅读文档。
var reply = request(actualUrl)
req.pipe(reply)
reply.pipe(res)