async和await,最简单的一个例子,以及简单的解释

async function a(){  
  console.log("1")  
   console.log("2")
}
a()
console.log("3")
//打印: 1 2 3 

使用 await 测试:

async function a(){  
  await 1  
  console.log("1")  
  console.log("2")
}
a()
console.log("3")
//打印: 3 1 2

简单教程如下

https://www.runoob.com/w3cnote/es6-async.html

posted @ 2022-05-11 17:17  风意不止  阅读(69)  评论(0编辑  收藏  举报