我有以下代码,需要根据某些条件导出模块,

moduleBase.js
var spawnLinux = require('child-process').spawn;
var module2 = require('module_2');

var isWin = process.platform === 'win32';

module.exports = function spawn() {
    if (isWin) {
        return module_2;
    } else {
        return spawnLinux;
    }
};


问题是module_2在由外部模块使用时返回错误,但是如果在此特定模块中使用它可以运行正常,那么导出中的问题可能是什么?

如果我这样使用它(在不同的模块中)

var module2 = require('module_2');

module2.run(); //this working


这不起作用

var module2 = require('moduleBase);

module2.run();//Here I got error

最佳答案

尝试这个

var module2 = require('moduleBase)();

module2.run();

10-06 13:02