0

私のノードアプリケーションでは、他のモジュールメソッドの結果を取得する必要があります.どうすればそれを行うことができますか.

app.js

 var mod=require('/otherModule');
 var value=mod.callingOtherModuleMethod();
 someOtherFn(value);

上記のモジュールで、callingOtherModuleMethod() が結果を返すのに時間がかかる場合は、まだノードがその結果を待つか、someOtherFn(value) を呼び出します。方法

otherModule.js

 exports.callingOtherModuleMethod=function(){

     var data='myData'; 
     return data;

 }
4

0 に答える 0