用 ajax 的话,知道方案,在这里 Multiple Simultaneous Ajax Requests (with one callback) in jQuery,
$.when(firstPromise, secondPromise).then(function(firstData, secondData) {
// do something
});
那如果用 fetch 的话,该如何写呢?
根据传统 Ajax 已死,Fetch 永生尝试了一下如下代码,但是浏览器还不支持 await 吧。
fetchTwo(url1, url2);
function fetchTwo(req1, req2) {
try {
let res1 = await fetch(req1);
let res2 = await fetch(req2);
let data1 = await res1.text();
let data2 = await res2.text();
console.log(data1);
console.log(data2);
} catch (e) {
console.log("Oops, error", e);
}
}
Promise.all()?
但是IE还不支持