var xmlhttp = new XMLHttpRequest();如图 异常不会被alert!!!处理报错逻辑就没法写了
1 回答
动漫人物
TA贡献1815条经验 获得超10个赞
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState === 4) {
if (xmlhttp.status === 200) {
console.log(xmlhttp.responseText)
} else {
// 错误处理
console.log("Error", xmlhttp.statusText);
}
}
}
添加回答
举报
0/150
提交
取消