0

所以我的 NodeJs 应用程序中有一组子进程。我现在有

cp_array[i].process.on("exit",exithandle(code,signal));

在他们每个人身上。问题是我希望能够访问在退出句柄中退出的进程的进程对象。因此,如果我输入 cp_array[i].process.name="example" 之类的内容,我就可以在 exithandle 函数中使用 process.name 访问我的“example”字符串。

4

1 回答 1

0

您可以cp_array[i].process通过this关键字访问:

function exithandle(code, signal) {
    var process = this;
    return function() {
        // Whatever
    };
}
于 2012-11-22T14:21:56.983 回答