在我的节点应用程序中,我需要获取其他模块方法的结果。我怎么能这样做。
app.js
var mod=require('/otherModule');
var value=mod.callingOtherModuleMethod();
someOtherFn(value);
在上面的模块中,如果callingOtherModuleMethod()需要更多时间来返回结果,则.sllll节点等待该结果,否则它将调用someOtherFn(value);方法
otherModule.js
exports.callingOtherModuleMethod=function(){
var data='myData';
return data;
}