promise与await的用法
Posted wuting
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了promise与await的用法相关的知识,希望对你有一定的参考价值。
1 save1(){ 2 return new Promise((resolve, reject)=> { 3 console.log(‘ajax1‘) 4 }) 5 } 6 7 save2(){ 8 return new Promise((resolve, reject)=> { 9 console.log(‘ajax2‘) 10 resolve(true) 11 }) 12 } 13 14 同时发送两个ajax请求: 15 async saveAll() { 16 const flag1 = await this.save1() 17 const flag2 = await this.save2() 18 if (flag1 && flag2) { 19 console.log(‘allSuccess‘) 20 console.log(‘nextAjax‘) 21 } 22 }
以上是关于promise与await的用法的主要内容,如果未能解决你的问题,请参考以下文章