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

async await

时间:2020-04-13 16:54:11      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:必须   执行   src   ima   return   new   c中   技术   function   

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

标签:必须   执行   src   ima   return   new   c中   技术   function   

原文地址:https://www.cnblogs.com/gengxinnihaoma/p/12665590.html

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