async原理
程序员文章站
2022-06-12 22:49:04
...
async 用法
async function A() {
let a = await 1;
console.log(a);
let b= await Promise.resolve(2);
console.log(b);
return 3;
}
转码理解
function A() {
var a;
var b;
return new Promise(function(resolve){
a = 1;
console.log(a);
resolve();
}).then(function(){
Promise.resolve(2).then(res => {
b = 2;
console.log(b)
});
}).then(() => 3)
}
转载于:https://www.jianshu.com/p/85ecdd461daa
上一篇: Word使用过程中的小技巧如设置分页、垂直居中、间距等
下一篇: 12月2日A5域名拍卖行情汇总