0

我想在 spawn 中运行 cmd,但是当我运行命令时,你不会得到回复。我该如何解决?

var terminal = require('child_process').spawn('cmd', ['/K'], { timeout : 1000*60*60*24 });
terminal.stdin.setEncoding = 'utf-8';
terminal.stdin.write(new Buffer('dir'));
terminal.stdout.on('data', function (data) {
    console.log('stdout: ' + data);
});

terminal.on('exit', function (code) {
       // console.log('child process exited with code ' + code);
});
4

1 回答 1

1

您没有返回 command dir。在 Windows 中是 \r\n。

terminal.stdin.write(new Buffer('dir\r\n'));

这将起作用。

于 2013-04-22T11:26:09.140 回答