所以我的 NodeJs 应用程序中有一组子进程。我现在有
cp_array[i].process.on("exit",exithandle(code,signal));
在他们每个人身上。问题是我希望能够访问在退出句柄中退出的进程的进程对象。因此,如果我输入 cp_array[i].process.name="example" 之类的内容,我就可以在 exithandle 函数中使用 process.name 访问我的“example”字符串。
所以我的 NodeJs 应用程序中有一组子进程。我现在有
cp_array[i].process.on("exit",exithandle(code,signal));
在他们每个人身上。问题是我希望能够访问在退出句柄中退出的进程的进程对象。因此,如果我输入 cp_array[i].process.name="example" 之类的内容,我就可以在 exithandle 函数中使用 process.name 访问我的“example”字符串。