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