好的,我对 jQuery 和 json 有点陌生。如果我使用 json 作为返回类型,我还能从 XMLHttpRequest 对象中检索 responseText 吗?
这是我正在使用的代码:
json response: {"clients": []}
$.ajax({
type: "POST",
url: "/myurl/whatever.php",
data: myData,
dataType: "json",
success: function(msg){
status.html(msg[0]);
},
error: function(msg) {
status.html("Error: " + msg[0]);
}
});
如果我想输出 json 响应或者我遗漏了什么,使用 msg[0] 是否正确?
我如何仍将上述代码与 XMLHttpRequest 一起使用来获取状态、responseText 等。
谢谢大家!