Promise.all并发请求
const promise1 = fetch('https://api.example.com/data1');
const promise2 = fetch('https://api.example.com/data2');
Promise.all([promise1, promise2])
.then(responses => {
// 在这里处理两个请求的响应
const response1 = responses[0];
const response2 = responses[1];
// 对响应进行操作
})
.catch(error => {
// 处理任何请求的错误
console.error(error);
});
学而不思则罔,思而不学则殆!