我创建了一个基于 Javascript 的应用程序,它使用以下 JQuery 函数从特定 URL 反序列化 JSON 对象并从中推断出一些数据。我考虑了来自两个不同 URL 的 2 个 JSON 对象。这 2 个对象包含完全相同的数据。
当我通过 RESTClient 插件分析第一个 URL 时,我得到以下标题:
Status Code: 200 OK
Access-Control-Allow-Origin: *
Alternate-Protocol: 80:quic,80:quic
Cache-Control: private
Content-Encoding: gzip
Content-Length: 53
Content-Type: application/json; charset=ISO-8859-1
Date: Fri, 20 Sep 2013 08:25:52 GMT
Server: Google Frontend
Vary: Accept-Encoding
通过 RESTClient 插件的第二个 URL 给了我以下标题:
Status Code: 200 OK
Content-Type: application/json;charset=UTF-8
Date: Fri, 20 Sep 2013 08:29:20 GMT
Server: Apache-Coyote/1.1
Transfer-Encoding: chunked
问题是来自第一个 URL 的 JSON 对象被完全反序列化,而第二个不是。这是我的 JQuery 函数:
$.ajax({
type: 'GET',
url: 'http://localhost:8085/Metrics/kfc/brands/Metrics/type3/', //one of the two URLs
dataType: 'json',
contentType: "application/json; charset=UTF-8",
async: true,
success: function (data) {
if (data == null) {
return false;
}
dataFromServer = data;
$.each(dataFromServer, function (date, value) {
dates.push(date);
values.push(value);
});
result.dates = dates;
result.values = values;
},
error: function (msg, url, line) {
alert('error trapped in error: function(msg, url, line)');
alert('msg = ' + msg + ', url = ' + url + ', line = ' + line);
}
});
return result.dates;
}
进一步反馈:alert中显示的错误信息为:
error trapped in error: function(msg, url, line)
msg = [object Object], url = error, line =
如果有人能发现我的错误所在,我将不胜感激。提前致谢!