对于async、await、promise的理解

async会返回一个promise对象
async function testAsync() {
    return "hello async";
}

const result = testAsync();
console.log(result);	//Promise { 'hello async' }

await在等待它后面函数的返回值,其返回值会直接赋值给await的变量

await等待有两个结果
1.等到的是普通函数
那么会直接以同步代码执行
2.等到的是异步函数(promise)
那么会阻塞下面的代码,等待异步函数执行完成后再执行后面的代码

注意:async是一个异步函数,虽然函数内虽然会发生阻塞,但是只在async函数内发生,外部不会阻塞

function getSomething() {
    return "something";
}

async function testAsync() {
    console.log(123)
    return Promise.resolve("hello async");
}

async function test() {
    const v2 = await testAsync();
    console.log(v2)
    const v1 = await getSomething();
    console.log(v1)
    console.log(v1, v2);
}
// 123
// hello async
// something
// something hello async


// async function test() {
//     const v2 =  testAsync().then((e)=>{console.log(e)});
//     console.log(v2)
//     const v1 = await getSomething();
//     console.log(v1)
//     console.log(v1, v2);
// }
// 123
// Promise { <pending> }
// something
// something Promise { <pending> }
// hello async
test();
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值