async/await 并发执行异步操作

Posted Long Long Journey

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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();






以上是关于async/await 并发执行异步操作的主要内容,如果未能解决你的问题,请参考以下文章

Swift新async/await并发中利用Task防止指定代码片段执行的数据竞争(Data Race)问题

C# 异步操作 async await 的用法

async/await处理异步

理解异步函数async和await的用法

async await 的用法

使用 async/ await 进行 异步 编程