1
我想使用的execfile和日誌標準輸出,讓該任務的完成百分比,但回調函數:得到的execfile標準輸出上塊
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"
謝謝,這工作完美。 – Alxs24