gpt4 book ai didi

javascript - Node JS Promise.all 和 forEach

转载 作者:IT老高 更新时间:2023-10-28 21:47:34 32 4
gpt4 key购买 nike

我有一个类似数组的结构,它公开了异步方法。异步方法调用返回数组结构,进而公开更多异步方法。我正在创建另一个 JSON 对象来存储从该结构获得的值,因此我需要小心跟踪回调中的引用。

我编写了一个蛮力解决方案,但我想学习一个更惯用或更干净的解决方案。

  1. 对于 n 层嵌套,该模式应该是可重复的。
  2. 我需要使用 promise.all 或一些类似的技术来确定何时解析封闭例程。
  3. 并非每个元素都必然涉及进行异步调用。所以在嵌套的 promise.all 中,我不能简单地根据索引对我的 JSON 数组元素进行赋值。不过,我确实需要在嵌套的 forEach 中使用类似 promise.all 的东西,以确保在解析封闭例程之前已完成所有属性分配。
  4. 我正在使用 bluebird promise lib,但这不是必需的

这里是部分代码 -

var jsonItems = [];

items.forEach(function(item){

var jsonItem = {};
jsonItem.name = item.name;
item.getThings().then(function(things){
// or Promise.all(allItemGetThingCalls, function(things){

things.forEach(function(thing, index){

jsonItems[index].thingName = thing.name;
if(thing.type === 'file'){

thing.getFile().then(function(file){ //or promise.all?

jsonItems[index].filesize = file.getSize();

最佳答案

通过一些简单的规则非常简单:

  • 每当您在 then 中创建 promise 时,将其返回 - 您未返回的任何 promise 都不会在外部等待。
  • 每当您创建多个 Promise 时,.all 它们 - 这样它会等待所有 Promise 并且不会消除任何错误。
  • 当你嵌套 then 时,通常可以在中间返回 - then 链通常最多 1 级深。<
  • 无论何时执行 IO,都应该带有一个 Promise - 它应该在一个 Promise 中,或者它应该使用一个 Promise 来表示它的完成。

还有一些提示:

  • 使用 .map 比使用 for/push 更好地完成映射 - 如果您使用函数映射值, map 可让您简洁地表达逐个应用操作并汇总结果的概念。
  • 如果空闲的话,并发比顺序执行要好 - 最好是并发执行并等待它们 Promise.all 而不是一个接一个地执行 - 每个在下一个之前等待。

好的,让我们开始吧:

var items = [1, 2, 3, 4, 5];
var fn = function asyncMultiplyBy2(v){ // sample async action
return new Promise(resolve => setTimeout(() => resolve(v * 2), 100));
};
// map over forEach since it returns

var actions = items.map(fn); // run the function over all items

// we now have a promises array and we want to wait for it

var results = Promise.all(actions); // pass array of promises

results.then(data => // or just .then(console.log)
console.log(data) // [2, 4, 6, 8, 10]
);

// we can nest this of course, as I said, `then` chains:

var res2 = Promise.all([1, 2, 3, 4, 5].map(fn)).then(
data => Promise.all(data.map(fn))
).then(function(data){
// the next `then` is executed after the promise has returned from the previous
// `then` fulfilled, in this case it's an aggregate promise because of
// the `.all`
return Promise.all(data.map(fn));
}).then(function(data){
// just for good measure
return Promise.all(data.map(fn));
});

// now to get the results:

res2.then(function(data){
console.log(data); // [16, 32, 48, 64, 80]
});

关于javascript - Node JS Promise.all 和 forEach,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31413749/

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