js的await同步使用方法通过案例详解

先用settimeout和promise模拟异步


function one(){
    return 'I am one'
}
function two(){
    setTimeout(()=>{
        return 'two'
    },1000)
}
    //改写two()
function four(){
    return new Promise( (resolve, reject)=>{
        setTimeout(() => {
            resolve('I am two')
        }, 2000);
    } )
}
function three(){
    return 'I am three'
}

function run(){
    console.log(one())
    //console.log不会等settimeout
    console.log(two()) //->undefined
    //改写two()的输出
    console.log(four())  //->promise
    console.log(three())
}
run()

上面two和four都没有得到正确的输出结果,分别输出了undefined和promise

改造run后

async function serve(){
    console.log('改造run方法')
    console.log(one())
    console.log( await four()) //会等待2秒得到结果
    console.log(three())
}
serve()

正确输出结果:

I am one
I am two
I am three

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值