18

这就是我所拥有的,并且我不断收到错误消息,因为当我按顺序执行时该文件还不存在。

如何在 writeStream 关​​闭时触发操作?

var fs = require('fs'), http = require('http');
http.createServer(function(req){
    req.pipe(fs.createWriteStream('file'));


    /* i need to read the file back, like this or something: 
        var fcontents = fs.readFileSync(file);
        doSomethinWith(fcontents);
    ... the problem is that the file hasn't been created yet.
    */

}).listen(1337, '127.0.0.1');
4

1 回答 1

29

可写流具有在刷新数据时发出的完成事件。

尝试以下操作;

var fs = require('fs'), http = require('http');

http.createServer(function(req, res){
    var f = fs.createWriteStream('file');

    f.on('finish', function() {
        // do stuff
        res.writeHead(200);
        res.end('done');
    });

    req.pipe(f);
}).listen(1337, '127.0.0.1');

虽然我不会重新阅读文件。您可以使用through创建流处理器。

于 2013-11-07T06:45:00.693 回答