节点js windows子进程退出和关闭事件

时间:2016-12-08 10:08:52

标签: javascript node.js mean-stack node-webkit

您好我正在尝试关闭calculator.exe应用程序时调用一个事件,但是在启动应用程序时事件本身会提高..有什么帮助?

var filePath="calc.exe";
var bat = exec(filePath);
bat.on('exit', function() {
 alert("exit");
});

1 个答案:

答案 0 :(得分:0)

尝试更换"退出"使用" SIGINT"代替:

bat.on('SIGINT', function() {
 alert("exit");
});