1

即使函数被称为并行,我也使用了 step,执行应该是串行的,请告诉我哪里出错了。

   //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

请帮我。谢谢

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 回答