3. vue_等多个请求执行完再执行下一个方法(Promise.all用法)


getData1() { return new Promise((resolve, reject) => { request1(requestParams).then((res) => {//接口1 xxx resolve(res); }).catch(e =>{ reject(e) }) }); }, getData2() { return new Promise((resolve, reject) => { request2(requestParams).then((res) => {//接口2 xxx resolve(res); }).catch(e =>{ reject(e) }) }); }, getData() { this.addLoading()//开始loading Promise.all([ this.getData1(), this.getData2() ]).then(res => { console.log(res); setTimeout(() => { this.hideLoading()//延时结束loading }, 800); }) }


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM