gpt4 book ai didi

node.js - node.js 上的异步/流系列

转载 作者:搜寻专家 更新时间:2023-11-01 00:24:48 24 4
gpt4 key购买 nike

考虑这段代码:

var async = require('async');

var a = function()
{
console.log("Hello ");
};
var b = function()
{
console.log("World");
};


async.series(
[
a,b
]
);

输出是你好

为什么 World 不是输出的一部分?

最佳答案

async.series函数将一个回调传递给在调用下一个方法之前必须调用的每个方法。如果您更改函数 ab 以调用该函数,它将起作用。

function a(done){
console.log('hello');
done(null, null); // err, value
}


function b(done){
console.log('world');
done(null, null); // err, value
}

关于node.js - node.js 上的异步/流系列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25165652/

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