我正在自学 AJAX 来 AJAXify 我的网站。在我的模板中,我有以下 JS 代码从视图中获取一些 JSON 数据,然后将数据附加到 div。
function filter(type) {
$.getJSON(
'/activity_stream/global-activity-stream/',
{xhr: "true", filter: type},
function(data) {
$('.mainContent').children().remove();
$(data).appendTo('.mainContent');
});
}
$(".btn").click(function () {
filter("recent");
});
}
我认为我的视图正在返回正确的 JSON,但现在没有将数据添加到.mainContent
div 中。
它给出了这个错误:
未捕获的类型错误:无法读取未定义的属性“ownerDocument”。