javascript中的await异步的情况

await只有等待函数返回时,才会异步。

直接例子更说明问题:

async function sayHello( ){
	console.log("this is function sayHello");
    // 自动构造Promise对象
	return "123456";
}

// 非async函数
let sayHelloPlain = () =>{ return "AABBB"; }

async function sayHi( ){
    
	console.log("this is function sayHi");
	
    // tempValue0 是Promise对象 
    let tempValue0 = sayHello( );
	console.log(tempValue0);

    // 不是等待函数返回,await不起作用。即此语句不阻塞
	let temp1 = await tempValue0;

    // 输出的是Promise("123456");
	console.log("await variable:" +temp1);

    // 阻塞
	tempValue0 = await sayHello( );
	console.log(tempValue0);
	
    // 不阻塞
	console.log(sayHelloPlain());
	
    // 阻塞
    let tempValue = await sayHelloPlain();
	console.log("await result:" + tempValue);
}

console.log( sayHi() ); // 输出 Promise { <pending> }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值