我正在尝试使用dataType: "json"
发出一个AJAX请求,而我是Firebug一直将请求显示为“已中止”。
POST http://mydomain.com/path/to/page Aborted
这是片段:
var postData = "someVar=someValue&otherVar=otherValue", msg;
$.ajax({
type: "POST",
url: "/path/to/page",
data: postData,
dataType: "json",
cache: false,
success: function(response) {
if (typeof response.row != undefined) {
$('#my-select')
.append($('<option></option>')
.attr("value", response.row.id)
.text(response.row.name)
);
msg = response.msg;
} else {
msg = 'failed';
}
alert(msg);
},
error: function(xhr, status, thrown) {
// EDIT 1
alert(status); // <-- It's alerting "timeout"
}
});
顺便说一句,我在这个网站上阅读了一些有类似问题的人的问题,但他们中的一些可能非常具体。一个是因为请求太大,另一个是因为他们要求另一个域等等。
我没有回复标题和没有回复正文。
以下是我的请求标题(简化):
Host mydomain.com
User-Agent Firefox/8.0.1
Accept application/json, text/javascript, */*; q=0.01
Accept-Language en-us,en;q=0.5
Accept-Encoding gzip, deflate
Accept-Charset ISO-8859-1,utf-8;q=0.7,*;q=0.7
DNT 1
Connection keep-alive
Content-Type application/x-www-form-urlencoded; charset=UTF-8
X-Requested-With XMLHttpRequest
Referer http://mydomain.com/path/to/page
Content-Length 125
Cookie PHPSESSID=somerandomstring
Apache error_log中没有显示任何内容。我在浏览器中手动导航到该页面,我没有收到任何错误(只有白色屏幕和一些文本)。
修改:添加了error()
回调,并提醒“超时”。
答案 0 :(得分:2)
请求可能会超时。
首先要尝试的是将默认超时值增加到更高的值,如下所示:
$.ajax({
type: "POST",
url: "/path/to/page",
data: postData,
timeout: 3000,
dataType: "json",
[...]
显然,默认超时值取决于浏览器,因此它可能低于脚本执行时间,或者由其他内容设置等等。