gpt4 book ai didi

javascript - 更改 for 循环中迭代器的数量

转载 作者:行者123 更新时间:2023-12-01 01:29:43 26 4
gpt4 key购买 nike

我想有条件地跳出这样的循环..

for(let i = 0; i < 3; i++) {
exampleFunction().then(result => {
res = 0 ? i = 3 : null
})
}

我希望 exampleFunction 至少运行 3 次,除非它得到所需的结果,在这种情况下我希望它停止运行。

最佳答案

exampleFunction 异步运行。让它工作的唯一方法是使用async/await

const iterateWithExampleFunction = async () => {
for (let i = 0; i < 3; i++) {
console.log('before', i)

await exampleFunction().then(result => {
i = result === 0 ? 3: i;
});

console.log('after', i)
}
};

const exampleFunction = async () => {
return 0;
}

iterateWithExampleFunction();

关于javascript - 更改 for 循环中迭代器的数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53400640/

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