沒(méi)找到原因,不浪費(fèi)時(shí)間, 還是直接使用Promise.all好了埂蕊。
代碼如下:
Promise.all(
requests.map(p => p
.then(value => ({
status: "fulfilled",
value
}))
.catch(reason => ({
status: "rejected",
reason
}))
)
).then(res=>{
this.afterSaleShow = false;
let length = 0;
res.forEach(v=>{
if(v.status =='fulfilled'){
length++;
}
})
// 全部成功,才提示
if(res && length == res.length){
_this.alert('當(dāng)前操作已完成武契,操作全部成功~')
} else{
let tip=當(dāng)前操作已完成祭往,操作成功${length}個(gè),失敗${res.length-length}個(gè)姆泻。
_this.alert(tip)
}
});