gpt4 book ai didi

node.js - 如何使用node js管理系列函数调用

转载 作者:太空宇宙 更新时间:2023-11-04 01:13:06 24 4
gpt4 key购买 nike

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

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

请帮助我。谢谢

最佳答案

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

你好,

您必须同步这些功能。此步骤不适用于递归函数。

试试这个,希望你能得到答案。

关于node.js - 如何使用node js管理系列函数调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14455771/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com