我有一个 $.ajax 函数如下:
$.ajax({
url: urlIn,
beforeSend: function (xhr) {
xhr.setRequestHeader("Authentication", "BASIC bogus:bogus");
},
complete: function (xhr) {
if (xhr.status == 401) {
alert("Worked");
}
else {
alert(xhr.status);
}
}
});
然而它返回 200。我在这里错过了什么?