1

I have used step even then function get called parallel, the execution should be in series please tell me where i am going wrong.

   //sample code
   var step=require('step')
   step(
   function first()
   {
   process();//calling function here
   return this; returning this to next function
   },
   function second()
   {
   process2();//calling another fun here
   return this;
   },
   function third()
   {
   process3();//calling function here
   return this; returning this to next function
   } 
   );//step end here

please help me. Thanks

4

2 に答える 2

1
var sync =require('async');
sync.series([
function(callback){
console.log("calling one");
callback(null, 'one');
},
function(callback){
console.log('two');
callback(null, 'two');
},
]);

こんにちは、

これらの機能を同期させる必要があります。ここでのステ​​ップは、再帰関数では機能しません。

これを試してみてください、あなたが答えを得ると思います。

于 2013-01-22T10:00:41.097 に答える
0

リンクをたどってください:

ビデオ: http://nodetuts.com/02-callback-pattern.html

テキスト: http://nodetuts.com/02-callback-pattern.html#-1

これはあなたを助けるかもしれません..

于 2013-01-23T06:25:55.693 に答える