var xhr = window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
xhr.open("GET", getPwdExpireNotificationUrlv2);
xhr.onload = function() { resolve(xhr.responseText);}
xhr.onerror = function() { reject(xhr.statusText);}
xhr.ontimeout = function (e) {xhr.send();};
xhr.send();
使用javascript“Promise.all”制作多个类似的请求(如上所述)。