我有一个在运行 Mongrel 的服务器上运行查询的网站。查询语法可能非常复杂,我刚刚运行了一个查询(HTTP 请求),它产生了这个错误。
欢迎所有解决方法。
编辑:这是完整的 ajax 命令:
$.ajax({
type: "POST",
url: '/parsequery/' + jsonQuery,
beforeSend: function(x) { // this is needed because otherwise jquery doesn't see the returned data as json
if(x && x.overrideMimeType) {
x.overrideMimeType("text/html");
}
},
datatype: 'json',
success: function(data, textStatus) {
if (parsedOK(data)) {
executeQuery(jsonQuery);
}
else {
handleFailedParse(data);
}
},
error: function(jaXHR, textStatus, errorThrown) {
alert("error sending request: " + textStatus)
}
});