3
 var rd = readline.createInterface({
    input: fs.createReadStream(file),
    output: process.stdout,
    terminal: false
});

rd.on('line', function(line) {

And is any way how to make "on" working synchronous. Code inside "on" loop need to be done before executing loop again. Is any way how to do that?

4

1 回答 1

3

通常,该on函数为特定事件注册一个事件处理程序。

readline::line活动为此目的:

每当输入流收到 \n 时发出,通常在用户按 Enter 或返回时收到。这是一个很好的监听用户输入的钩子。

NodeJS 文档

顺便说一句,您在搜索中使用了哪些关键字?我使用过nodejs readline.createInterface,第一个结果是这个 NodeJS 文档页面!

于 2013-06-29T10:10:50.237 回答