I had a loop where I wanted to call an API multiple times, e.g. 500 times.
我有一个循环,我想多次调用API,例如500次。
APIs implement rate limiting and even if not, it’s just unkind to make those many requests in a very short time.
API实现了速率限制,即使没有限制,在很短的时间内发出如此多的请求也是不友好的。
So I wanted to slow down the loop. How?
所以我想放慢循环。 怎么样?
Turns out it’s pretty simple, once you set up a sleep() function, that you don’t need to change:
事实证明,一旦设置了sleep()函数,就无需更改:
const sleep = (milliseconds) => {
return new Promise(resolve => setTimeout(resolve, milliseconds))
}
Then you can call await sleep(1000) to stop 1 second in every iteration, like this:
然后,您可以调用await sleep(1000)在每次迭代中停止1秒钟,如下所示:
const list = [1, 2, 3, 4]
const doSomething = async () => {
for (const item of list) {
await sleep(1000)
console.log('🦄')
}
}
doSomething()
本文介绍如何在JavaScript中使用sleep()函数来控制循环的执行速率,避免因短时间内发送大量请求而触发API的速率限制,同时保持代码的优雅和效率。

904

被折叠的 条评论
为什么被折叠?



