如何用 node.js 的 koajs 模块重写如下代码?
http.createServer(function(req, res) {
var theFile;
res.write('hello');
theFile = fs.createReadStream('./file.txt');
theFile.on('end', function() {
return res.end('world');
});
return theFile.pipe(res);
}).listen(3001);
以下是我重写的:
var app=koa();
app.use(function*(next){
this.body = 'hello'
this.body += fs.createReadStream('./file.txt')
this.body += 'world'
})
app.listen(3000)
但运行结果不符合预期,
重写代码中我不想用 fs.readFile 代替 stream。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很简单,先把createReadStream给包装一下,然后就可以使用yield来异步获取文件内容了,这个函数我帮你包装好了,拿去就能用。