我试图从stdout读取并将其放入NodeJS中的变量.这就是我尝试过的:
process.stdout.on('data',function(data) { console.log(data.toString()) }); console.log('hello')
解决方法
你试图在
a Writable Stream上使用
the Readable Stream API.具体来说,the
process.stdout
stream is for writing to stdout not reading from stdout.你想要做的是不可能的,如果它确实有效会产生无限循环,breaks the definition of what stdin and stdout are.