我正在节点中工作,因为它是通过Visual Studio 代码扩展发生的。我成功创建了子进程,并可以根据命令终止它们。我希望在进程意外退出时运行代码,这似乎是"exit"事件的用途,但我不清楚如何调用它,这是我正在使用的代码,进程运行,但不检测/登录退出,请注意 output.append 是 Visual Studio 代码特定版本的控制台.log():
child = exec('mycommand', {cwd: path},
function (error, stdout, stderr) {
output.append('stdout: ' + stdout);
output.append('stderr: ' + stderr);
if (error !== null) {
output.append('exec error: ' + error);
}
});
child.stdout.on('data', function(data) {
output.append(data.toString());
});
以下是我尝试过的四件事,它们在退出时登录时不起作用:
child.process.on('exit', function(code) {
output.append("Detected Crash");
});
child.on('exit', function(code) {
output.append("Detected Crash");
});
child.stdout.on('exit', function () {
output.append("Detected Crash");
});
child.stderr.on('exit', function () {
output.append("Detected Crash");
});
查看子进程模块的节点.js源代码,.exec()
方法本身执行此操作:
child.addListener('close', exithandler);
child.addListener('error', errorhandler);
而且,我认为.on()
是.addListener()
的快捷方式,所以你也可以这样做:
child.on('close', exithandler);
child.on('error', errorhandler);