在节点中如何获取其他模块方法的结果

时间:2013-09-11 06:08:54

标签: node.js

在我的节点应用程序中,我需要获取其他模块方法的结果。我怎么能这样做。

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;

 }

0 个答案:

没有答案