如何通过管道传输数据。错误:没有方法

时间:2013-12-02 20:34:39

标签: node.js express

所以我在req.body.fileData中传递了数据。

res.pipe(req.body.fileData)
  .pipe(base64.decode())
  .pipe(fs.createWriteStream(location));

第一行的失败是:

Blah blah has no method 'on'
    at ServerResponse.Stream.pipe

非常感谢帮助!

1 个答案:

答案 0 :(得分:-2)

res.send(req.body.fileData)
  .pipe(etc).