背景:
- 使用 jQuery 1.7 客户端
- PHP服务器端
- 使用带有 json_encode php 函数的 json 响应
- 内容类型标头是正确的,其中任何一个都有效:text/plain、text/x-json、application/json。
- 我的 php 代码没有抛出任何错误
- 我正在开发 Firefox 11
- 我正在使用 js 控制台和其他 Web 的开发人员工具
- HTTP/1.1 200 正常
在这段 Javascript 代码中,该success
事件永远不会被触发:
$.ajaxSetup({cache:false,
success:function(d) {
console.log("ok from setup with data "+d.toSource())
},
complete:function(xhr,ts){
console.log("Ajax finished reponse:"+xhr.responseText)
},
error:function(jqXHR, textStatus, errorThrown){
console.log("Error")
}
});
$.getJSON("test2.php",{},function(data){
//some code here
});
当我这样做时,它可以工作:
$.ajaxSetup({cache:false,
complete:function(xhr,ts){
console.log("Ajax completado con:"+xhr.responseText)
},
error:function(jqXHR, textStatus, errorThrown){
console.log("Error")
}
});
$.getJSON("test2.php",{},
function(data){
//some code here
}).success(function(d){
console.log("success applied directly, data "+d.toSource())
}
);
在这两种情况下,总是会触发完整事件,而永远不会触发错误。
但是,在第二个代码中,成功被触发。
显然.get()
方法是一样的。
PHP代码:
<?php header("Content-Type:application/json;charset=utf-8");
//or whatever text/x-json text/plain, even text/html, jquery do the dirty job
echo json_encode(array("stat"=>"1")) ?>
我的目标:
- 我想向所有 ajax 请求触发相同的成功事件
- 我想在我的成功事件中使用请求返回的 json数据,如果可能的话,无需再次将原始 jqXHR responseText 转换为 json
这个问题很奇怪,有什么想法吗?
我阅读了所有这些问题:
而且我很确定它们都不是我的问题。