标签: javascript node.js readline
阅读the official docs for the readline module,与其他流一样,没有end事件。 试图
end
reader.on('end', cb);
不起作用。
如果没有更多行要读取,我该如何运行回调?
答案 0 :(得分:69)
没关系,它是close。
close
reader.on('close', cb);