我在解析位于以下 URL 的 JSON 字符串时遇到问题:
http://sandbox.stevenmclintock.com/json/bookmarks
我已经包含了我的 jQuery $.ajax() 调用,但似乎无法弄清楚为什么它返回“解析错误”?它在 JSONLint 中验证,所以我希望这里有人可以帮我一把?
$.ajax({
url: '/json/bookmarks',
type: 'GET',
dataType: 'application/json',
success: function (data) {
alert(data);
},
error: function (qXHR, textStatus, errorThrown) {
alert(textStatus);
}
});