1 回答
TA贡献1843条经验 获得超7个赞
function a() {
return new Promise(res,rej){
if(e) {
$.ajax({
url: '../../a.ashx',
data: { },
type: 'get',
success: function (data) {
res(data)
}
})
}
}
}
function b() {
return new Promise(res,rej){
if(e) {
$.ajax({
url: '../../b.ashx',
data: { },
type: 'get',
success: function (data) {
res(data)
}
})
}
}
}
function c(){
console.log(1);
}
Promise.all([a(), b()]).then(c());
添加回答
举报