Axios.all([getNon200Access().then(res=>{
}).catch(()=>{}),
getNon200Access().then(res=>{
}).catch(()=>{})
])
.then(
Axios.spread((one, two) => {
console.log('全部请求完成')
})
)
.catch(err => {
})
网友评论