<script>
// AJAX call 1
function call_1() {
return new Promise(function(resolve, reject) {
let xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if(this.readyState == 4) {
if(this.status == 200)
resolve(this.responseText);
else
reject('Call 1 Failed');
}
};
xhttp.open("GET", "ajax-1.php");
xhttp.send();
});
}
// AJAX call 2
function call_2() {
return new Promise(function(resolve, reject) {
let xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if(this.readyState == 4) {
if(this.status == 200)
resolve(this.responseText);
else
reject('Call 2 Failed');
}
};
xhttp.open("GET", "ajax2-2.php");
xhttp.send();
});
}
Promise.all([ call_1(), call_2() ]).then(function(values) {
// all AJAX requests are successfully finished
// "values" is array containing AJAX responses of all requests
console.log(values);
}).catch(function(reason) {
// one of the AJAX calls failed
console.log(reason);
});
</script>
网友回复
如何让ai帮我自动在小红书或抖音上自动根据需求截流与潜在客户聊天拉客?
如果用go编写一个在virtualbox中启动的简单操作系统?
go如何搭建一个零信任网络?
如何用python实现一个公网代理访问软件?
如何用go实现一个公网代理访问软件?
如何用python实现一个内网穿透打洞程序,实现内网的80端口暴露到公网上可以访问?
如何用go实现一个内网穿透打洞程序,实现内网的80端口暴露到公网上可以访问?
何为Shadowsocks 代理?
python如何实现类似php的opendir目录相互隔离的fastcgi多租户虚拟空间?
nodejs如何实现类似php的opendir目录相互隔离的fastcgi多租户虚拟空间?


