gpt4 book ai didi

javascript - npm 异步模块不执行最终回调

转载 作者:行者123 更新时间:2023-12-02 15:17:21 25 4
gpt4 key购买 nike

我使用以下代码来输出数组中的每个项目。我看到了 ('*****') 的每个单独日志...

但是当迭代全部完成时,我看不到“迭代完成”部分。

async.forEach(stringsArray,function (item,callback) 
{
//do something with the item
console.log("*****");
},
function()
{
//This function is called when the whole forEach loop is over
console.log("Iterating complete");
});

有什么想法吗?

最佳答案

您没有执行回调,因此 async 不知道您已完成。试试这个:

async.forEach(stringsArray, function(item, callback) { 
console.log('*****');
callback();
}, function() {
console.log('iterating done');
});

关于javascript - npm 异步模块不执行最终回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34344163/

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