expressjs - 响应流的管道不起作用

时间:2015-03-02 20:49:15

标签: node.js express stream

我有这个基本的快递应用程序:

var express = require('express');
var app = express();
var PORT = 3000;
var through = require('through');


function write(buf) {
    console.log('writing...');
    this.queue('okkkk');
}

function end() {
    this.queue(null);
}

var str = through(write, end);


/* routes */
app.get('/', function(req, res){
    res.send("Hello!");
})


app.post('/stream', function(req, res){
    var s = req.pipe(str).pipe(res);
    s.on('finish', function() {
       console.log('all writes are now complete.'); // printed the first time
    });
});


/* listen */
app.listen(PORT, function () {
    console.log('listening on port ' + PORT + '...');
});

当我在启动服务器后第一次将一些数据发布到/stream端点时,我得到okkk作为我期望的响应。但是,在此之后,对/stream端点的任何请求都会超时并且不会返回任何响应。

为什么会这样?这到底发生了什么?

2 个答案:

答案 0 :(得分:5)

当我用req.pipe(str).pipe(res)替换req.pipe(through(write, end)).pipe(res)时,它确实有效,这基本上确保为每个请求创建一个新的直通实例。

答案 1 :(得分:4)

我遇到了同样的问题,看起来res没有正确完成。所以我在我的流中添加了一个回调并自己结束了res。这解决了我的问题:

stream.on('end', () => res.end());
stream.pipe(res);