目前第一次使用 JSON 并且没有 jQuery 经验。我有这个函数在 $.ajax 请求的“成功”时触发:
function(data) {
$.each(data.notifications, function(notifications) {
alert('New Notification!');
});
}
但是,我在萤火虫控制台中收到一个错误,指出“对象未定义”“长度 = object.length”。
JSON 响应是:
["notifications",[["test would like to connect with you",{"Accept":"\/events\/index.php\/user\/connection?userId=20625101&action=accept","Decline":"\/events\/index.php\/user\/connection?userId=20625101&action=decline"}]]]
我猜这与[]
s 的数量有关,但 JSON 是由 PHP 使用 json_encode() 编码的
任何帮助,将不胜感激!
谢谢 :)