正如標題所暗示的,我有以下幾點:JQuery的AJAX試圖解析XML,甚至與 「數據類型」: 「JSON」
$.ajax({
"url" : ...
, "type" : "GET"
, "dataType" : "JSON"
, "success" : function(response_data) {
that.data = response_data;
success(response_data);
}
, "onerror" : function(data) {
console.log(JSON.stringify(data));
}
});
但是當我運行它,我得到
XML Parsing Error: syntax error Location: moz-nullprincipal
看着螢火蟲,我看到請求是
Accept application/json, text/javascript, */*; q=0.01
Accept-Encoding gzip, deflate
Accept-Language en-us,en;q=0.5
Cache-Control max-age=0
Connection keep-alive
Host localhost:8888
Referer http://localhost:8888/
User-Agent Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:13.0) Gecko/20100101 Firefox/13.0.1
X-Requested-With XMLHttpRequest
任何想法?
可能不是原因,但應該不是 'JSON' 是小寫?究竟是拋出這個錯誤? – Utkanos
有趣,讓我試試小寫 – Max