确定 AJAX 调用成功的正确方法是什么?
我在prototype.js 中看到
return !status || (status >= 200 && status < 300);
在 jQuery 中:
// IE error sometimes returns 1223 when it should be 204 so treat it as success, see #1450
return !xhr.status && location.protocol == "file:" ||
( xhr.status >= 200 && xhr.status < 300 ) || xhr.status == 304 || xhr.status == 1223;
哪一个是正确的?如果我们不使用任何 Javascript 库而是用基本的 Javascript 编写 AJAX,我们应该使用哪一个?