最佳答案
我想用一些控制台扩展来制作一个简单的服务器 http 服务器。我找到了要从命令行数据读取的代码片段。
var i = rl.createInterface(process.stdin, process.stdout, null);
i.question('Write your name: ', function(answer) {
console.log('Nice to meet you> ' + answer);
i.close();
process.stdin.destroy();
});
那么反复提问的问题,我不能简单地使用 while(done) { }
循环?同样,如果服务器在提问时间收到输出,那么线路就会被破坏。