我使用' readline-sync'编写了以下代码。依赖性。
var readlineSync = require('readline-sync');
function main() {
printMenu();
var userName = readlineSync.question('Please enter your choice:');
console.log(userName);
}
main();
我从WebStorm运行此代码试图使用WebStorm控制台窗口。 我收到了错误:
错误:当前环境不支持交互式阅读 来自TTY。 stty:指定输出样式时,可能无法设置模式
当我从linux终端运行它时代码没有错误。我从错误消息中了解到' readline-sync'无法从WebStorm控制台工作。你知道怎么解决吗?