执行collection.fetch()时,正在生成以下错误
Uncaught TypeError: Cannot call method 'apply' of undefined
Backbone.Events.triggerbackbone-0.5.3.js:117
_.extend._onModelEventbackbone-0.5.3.js:635
Backbone.Events.triggerbackbone-0.5.3.js:117
_.extend._addbackbone-0.5.3.js:595
_.extend.addbackbone-0.5.3.js:448
_.extend.fetch.options.successbackbone-0.5.3.js:521
jQuery.Callbacks.firejquery.js:1064
jQuery.Callbacks.self.fireWithjquery.js:1182
donejquery.js:7454
jQuery.ajaxTransport.send.callbackjquery.js:8235
来自服务器的响应
[
{"title":"The Ampersand Collection","id":"4f1deca441c41f9700000014"},
{"title":"The Ampersand Collection2","id":"4f1deca441c41f9700000014"},
{"title":"The Ampersand Collection3","id":"4f1deca441c41f9700000014"},
//...
]
代码
$feed.animate({scrollLeft: $(event.target).hasClass('left') ? '-=' + win_width : '+=' + win_width}, {
step: function(){
if(!loaded && scope.model.feedlets.last().view !== undefined && !$.rightoffold(scope.model.feedlets.last().view.el, {container: $(scope.model.feedlets.last().view.el).parent(), threshold: 400})) {
loaded = true;
scope.model.feedlets.fetch({
add:true,
data: {
limit: 20,
offset: scope.model.feedlets.models.length
},
success: function() {
console.log(scope.model.feedlets.models);
}
});
}
},
complete: function(){
$('#container').triggerHandler('scroll');
}
});
范围是 FeedView 的一个实例,该模型是 FeedModel 的实例。我正在使用嵌套集合,因此每个 FeedModel 都有一个 Feedlets 的集合。
答案 0 :(得分:10)
在错误跟踪之后,在视图中的某个位置,您似乎在集合的“add”事件上使用未定义的函数调用了bind
。所以在视图中寻找这样的东西:
mycollection.bind('add', this.func, this);
在你的代码中,this.func
(无论它是什么)似乎是未定义的,或者至少它不是一个函数。也许你试图在创建函数之前绑定它?如果没有看到完整的视图代码,我不确定。