IE-10及以下版本:尚未提供完成此操作所需的数据

时间:2017-12-12 19:38:08

标签: javascript internet-explorer

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”制作多个类似的请求(如上所述)。

0 个答案:

没有答案