如何将函数/回调传递给Node.js中的子进程?

时间:2015-01-20 04:11:52

标签: javascript node.js child-process

假设我的parent.js包含名为parent

的方法
var childProcess = require('child_process');

var options = {
    someData: {a:1, b:2, c:3},
    asyncFn: function (data, callback) { /*do other async stuff here*/ }
};

function Parent(options, callback) {
    var child = childProcess.fork('./child');
    child.send({
        method: method,
        options: options
    });
    child.on('message', function(data){
        callback(data,err, data,result);
        child.kill();
    });
}

同时在child.js

process.on('message', function(data){
    var method = data.method;
    var options = data.options;
    var someData = options.someData;
    var asyncFn = options.asyncFn; // asyncFn is undefined at here
    asyncFn(someData, function(err, result){
        process.send({
            err: err,
            result: result
        });
    });
});

我想知道Node.js中是否允许将函数传递给子进程。

为什么asyncFn在发送到undefined后变为child

是否与JSON.stringify相关?

1 个答案:

答案 0 :(得分:7)

JSON不支持序列化功能(至少开箱即用)。您可以先将函数转换为其字符串表示形式(通过asyncFn.toString()),然后在子进程中再次重新创建该函数。但问题是你在这个过程中失去了范围和上下文,所以你的功能必须是独立的。

完整示例:

parent.js

var childProcess = require('child_process');

var options = {
  someData: {a:1, b:2, c:3},
  asyncFn: function (data, callback) { /*do other async stuff here*/ }
};
options.asyncFn = options.asyncFn.toString();

function Parent(options, callback) {
  var child = childProcess.fork('./child');
  child.send({
    method: method,
    options: options
  });
  child.on('message', function(data){
    callback(data,err, data,result);
    child.kill();
  });
}

child.js

process.on('message', function(data){
  var method = data.method;
  var options = data.options;
  var someData = options.someData;
  var asyncFn = new Function('return ' + options.asyncFn)();
  asyncFn(someData, function(err, result){
    process.send({
      err: err,
      result: result
    });
  });
});