所以我的NodeJs应用程序中有一系列子进程。现在我有了
cp_array[i].process.on("exit",exithandle(code,signal));
在他们每个人身上。 问题是我希望能够访问退出句柄中退出的进程的进程对象。所以,如果我像cp_array [i] .process.name =“example”一样,我可以在exithandle函数中使用process.name访问我的“example”字符串。
答案 0 :(得分:0)
您可以通过cp_array[i].process
关键字访问this
:
function exithandle(code, signal) {
var process = this;
return function() {
// Whatever
};
}