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