joken-前端工程师

  :: 首页 :: 博问 :: 闪存 :: 新随笔 :: :: :: 管理 ::
var test=function(){
    return new Promise((resolve, reject) => {
        setTimeout(()=>{
            resolve('dkljalkfjakfj')
        },3000)
    });
};
async function test2(){
    var data=await test();
    console.log(data);
}
test2()

 

posted on 2017-06-01 17:48  joken1310  阅读(84)  评论(0编辑  收藏  举报