Promise.all 静态方法
概念:合并多个 Promise 对象,等待所有同时成功完成(或某一个失败),做后续逻辑
语法
const p = Promise.a11([Promise对象,Promise对象,...])
p.then(result => {
// result结果: [Promise对象成功结果,Promise对象成功结果,...]
]).catch(error =>
// 第一个失败的Promise对象,跑出的异常
})
案例
// 1.请求城市的天气
const bjPromise = axios({ url: 'http://hmajax.xxxx.net/api/weather', params: { city: '110100' } })
const shPromise = axios({ url: 'http://hmajax.xxxx.net/api/weather', params: { city: '310100' } })
const gzPromise = axios({ url: 'http://hmajax.xxxx.net/api/weather', params: { city: '440100' } })
const szPromise = axios({ url: 'http://hmajax.xxxx.net/api/weather', params: { city: '440300' } })// 2.使用Promise.all,合并多个Promise对象
const p = Promise.all([bjPromise,shPromise,gzPromise,szPromise]).then(res=>{// 注意:结果数组返回的顺序和上面合并数组的顺序是一致的console.log(res)
}).catch(err=>{console.log(err)
})