async await
Posted gengxinnihaoma
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了async await相关的知识,希望对你有一定的参考价值。
function 摇色子(){
return new Promise((resolve,reject)=>{
let sino=parseInt(Math.random()*6+1)
setTimeout(()=>{
resolve(sino)
},3000)
})
}
async function test(){
let n=await 摇色子()
console.log(n)
console.log(123)
}
test()
console.log(456)
上面这段代码async中使await 摇色子()先执行,等到三秒后执行完再把得到的结果赋值给左边的n,也就是说test函数需要三秒钟才执行完成,所以test函数是异步的,因此前面必须写async
以上是关于async await的主要内容,如果未能解决你的问题,请参考以下文章