Can someone tell me why in the world I keep getting a parseerror in the console with the following code?
$.ajax({
url : "file.php",
data : data,
dataType : "json",
success : function (request) {
console.log("success");
},
error : function (request, error) {
console.log(error);
}
});
I have validated my JSON with jsonlint.com and it's Valid.
The Response Headers being returned in the Net tab of Firebug are:
> Content-Length 19
>
> Keep-Alive timeout=5, max=96
>
> Connection Keep-Alive
>
> Content-Type application/json What do you see in Firebug's Net tab?
以上就是Why am I getting a parseerror when using jQuery's ajax()?的详细内容,更多请关注web前端其它相关文章!