我正在尝试使用execFile并记录stdOut,它给出了在任务上完成的百分比,但是回调函数:
var child = require('child_process');
child.execFile("path/to/the/file", options, function (error, stdout, stderr) {
console.log('stdout: ' + stdout);
});
等待该过程完成,然后立即记录所有内容。 如何在处理过程中获取信息并将其记录下来?我试试这个:
child.stdout.on('data', function (data) {
console.log(data);
});
但我收到此错误:Cannot read property 'on' of undefined"
答案 0 :(得分:0)
您应该使用.spawn()
代替.exec()
/ .execFile()
来传输输出:
var spawn = require('child_process').spawn;
var child = spawn("path/to/the/file", args);
child.stdout.on('data', function(data) {
console.log(data.toString());
});
child.on('close', function(code, signal) {
// process exited and no more data available on `stdout`/`stderr`
});