码迷,mamicode.com
首页 > 其他好文 > 详细

在async函数中并发异步执行

时间:2020-01-01 09:40:06      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:div   new   0ms   timeout   eject   ons   ret   sync   async   

 

async function f1() {
return new Promise((resolve, reject) => {
setTimeout(() => {
console.log(‘5000ms passed‘);
resolve()
}, 5000)
})
}

 

async function f2() {
return new Promise((resolve, reject) => {
setTimeout(() => {
console.log(‘1000ms passed‘);
resolve()
}, 1000)
})
}



async function test() {
 
// 使f1,f2并发异步执行
const r1 = f1()
const r2 = f2()
console.log(await r1);
console.log(await r2)



// 同步
const r1 = await f1()
const r2 = await f2()
console.log(r1);
console.log(r2);
}



test()

在async函数中并发异步执行

标签:div   new   0ms   timeout   eject   ons   ret   sync   async   

原文地址:https://www.cnblogs.com/eret9616/p/12128067.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!