async/await 并发执行异步操作



  1. let co = require("co");
  2. //模拟异步操作
  3. let wait = (t) => {
  4. return new Promise((resolve, reject) => {
  5. console.log("start:" + t);
  6. setTimeout(() => {
  7. console.log(t);
  8. resolve();
  9. }, t);
  10. })
  11. }
  12. //co库的用法
  13. co(function* () {
  14. let p = yield [wait(500), wait(200), wait(2000)];
  15. console.log("finish");
  16. })
  17. //原生async/await的用法
  18. let app = async () => {
  19. let p = await Promise.all([wait(500), wait(200), wait(2000)]);
  20. console.log("finish");
  21. }
  22. app();




来自为知笔记(Wiz)

智能推荐

注意!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。



 
© 2014-2019 ITdaan.com 粤ICP备14056181号  

赞助商广告