从 shell 管道接收数据后,我需要通过提示询问用户。但应用程序在从管道读取数据后立即关闭。热到让它等待用户输入?
var readline = require('readline');
var data = '';
process.stdin.setEncoding('utf8');
process.stdin.on('readable', function() {
var chunk = process.stdin.read();
if (chunk !== null) {
data+=chunk;
}
});
process.stdin.on('end', function() {
console.log('from pipe: ' + data);
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
rl.question('prompt> ', (answer) => {
console.log('from prompt: ', answer);
rl.close();
});
});
当我运行这个脚本
$ echo "pipe" | node app.js
它打印
from pipe: pipe
prompt>
并立即退出,从不等待提示。
我在 Windows 上,节点 v4.2.1