我已经阅读了很多很多关于同一问题的问答,但没有一个是我的具体问题(至少不是我能找到的)。
我有一个回显 json 字符串的 php 脚本
header('Content-Type: application/json');
echo $result;
返回的 JSON(使用JSONLint检查并且有效):
{"Announcement":{"ID":1,"Type":1,"Text":"This is a test Albums announcement.","TimeStart":"1969-12-31","TimeEnd":"1969-12-31"}}
还有一个读取 json 的 web jquery 脚本:
$.ajax({
type : "GET",
url : "http://b***s.net/S****s/GetAnnouncements.php?callback=?",
data : {get_param : "Announcement"},
dataType : "json",
error : function(jqXHR, textStatus, errorThrown) {alert(errorThrown); alert(textStatus);},
success : function(data) {alert('success');
$.each(data, function(index, element) { alert('here');
$("#announcements-list").append("<li><a id='announcements-a-" + element.ID + "' href='#announcement-details'><p>" + element.Type + ": " + element.Text + "</p></a></li>");
$("#announcements-a-" + element.ID).bind('click', function() {Announcements.AnnouncementID = element.ID;});
});
$("#announcements-list").listview('refresh');
}
});
success:
永远不会被调用。并error:
返回atextStatus
和是"parsererror"
errorThrown
"Error: jQuery1830649454693285679_1359620502896 was not called"
- 我已添加
callback=?
到 url 以解决跨域问题。 - 我已经发送
header('Content-Type: application/json');
到 php,它返回 NO html。 - 我已经用JSONLint验证了 JSON 的有效性
- 我已经尝试删除
data: "json"
一些答案所说的,但仍然返回一个parsererror
- 使用 jQuery 1.8.3