当我执行XMLHttpRequest时,它有时没有readyState 4但它有readyState 3。 那种情况可能吗?我怎样才能以正确的方式处理它?</ p>
xmlHttp.onreadystatechange = function () {
if (xmlHttp.readyState == 3) {
console.log("3");
}
if (xmlHttp.readyState == 4) {
console.log("4");
}
}
对于某些请求,我可以在控制台“3”中看到,但没有“4”。