首页 > 其他 > 详细

[Typescript] Promise based delay function using async / await

时间:2018-01-24 20:59:57      阅读:167      评论:0      收藏:0      [点我收藏+]

Learn how to write a promise based delay function and then use it in async await to see how much it simplifies code over setTimeout.

Lets say you want to call a function after 1s, 2s, 3s. You can use setTimeout, or you can wrap it up into a simple delay function that works with async/await

 

const delay = (ms) => new Promise(res => setTimeout(res, ms));

const runAsync = async (cb) => { 
  await delay(100);
  cb(1s)
  await delay(1000);
  cb(2s)
  await delay(1000);
  cb(3s)
} 

runAsync((m) => { console.log(m)})

 

[Typescript] Promise based delay function using async / await

原文:https://www.cnblogs.com/Answer1215/p/8343347.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!