二. async表达式
1.await 必须要在 async中使用
// 创建 promise 对象 (成功)
const p = new Promise((resolve, reject)=>{
resolve('用户数据')
})
// await 要放在 async 函数中使用
async function main(){
let result = await p;
console.log(result); // 用户数据
}
main()
// 创建 promise 对象
const p1 = new Promise(resolve, reject)=>{
reject('调用失败!')
}
async function main1(){
try {
let result1 = await p1;
} catch (e){
console.log(e); // 调用失败!
}
}