Javascript版本的sleep()

转自 https://stackoverflow.com/questions/951021/what-is-the-javascript-version-of-sleep

# 1 

这个问题回答下面赞数最高的回答很好用(比如可以用在循环当中),#2是比较久远的方法,在循环当中使用可能会出问题导致死循环。

 

关键是async和await两个关键字。

function sleep(ms) {
  return new Promise(resolve => setTimeout(resolve, ms));
}

async function demo() {
  console.log('Taking a break...');
  await sleep(2000);
  console.log('Two seconds later, showing sleep in a loop...');

  // Sleep in loop
  for (let i = 0; i < 5; i++) {
    if (i === 3)
      await sleep(2000);
    console.log(i);
  }
}

demo();

Note that

  1. await can only be executed in functions prefixed with the async keyword, or at the top level of your script in an increasing number of environments.
  2. await only pauses the current async function. This means it's not blocking the execution of the rest of the script, which is what you want in the vast majority of the cases. If you do want a blocking construct, see this answer using Atomics.wait, but note that most browsers will not allow it on the browser's main thread.

Two new JavaScript features (as of 2017) helped write this "sleep" function:

Compatibility

If for some weird reason you're using Node older than 7 (which has reached end of life), or are targeting old browsers, async/await can still be used via Babel (a tool that will transpile JavaScript + new features into plain old JavaScript), with the transform-async-to-generator plugin.

#2

比较旧的方法。缺点是在循环中使用会出现无限循环。

 function sleep (time) {
    return new Promise((resolve) => setTimeout(resolve, time));
  }
   sleep(2000).then(() => {  function; })

 

posted @ 2021-05-14 16:53  Erio  阅读(59)  评论(0编辑  收藏  举报