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

async,await

时间:2017-08-10 13:31:17      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:pre   func   settime   bsp   代码执行   ons   对象   方法   hello   

function timeout(ms){
    return new Promise(function(resolve){
        setTimeout(resolve,ms)
    })
}

async function asyncPrint(value,ms){
    await timeout(ms);
    console.log(value)
}
asyncPrint(hello world,5000)

这段代码是过了5秒再显示hello world

await是要等待这句代码执行完,再执行下面的代码

 

 

async function f(){
    return hello wld
}
f().then(function(re){
    console.log(re);
});

async方法是返回Promise对象

.then(),.catch();

 

async,await

标签:pre   func   settime   bsp   代码执行   ons   对象   方法   hello   

原文地址:http://www.cnblogs.com/lwwen/p/7338415.html

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