gpt4 book ai didi

backbone.js - Backbonejs collection.fetch() 不工作 : Cannot call method 'apply' of undefined

转载 作者:行者123 更新时间:2023-12-01 23:04:27 25 4
gpt4 key购买 nike

在执行 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');
}
});

scopeFeedView 的一个实例,该模型是 FeedModel 的一个实例。我正在使用嵌套集合,因此每个 FeedModel 都有一个 Feedlets 集合。

最佳答案

在错误跟踪之后,在您的 View 中,您似乎在集合的“add”事件上调用了 bind 并使用未定义的函数。所以在 View 中寻找类似的东西:

mycollection.bind('add', this.func, this);

在您的代码中,this.func(无论它是什么)似乎是未定义的,或者至少它不是一个函数。也许您尝试在创建函数之前绑定(bind)它?如果没有看到完整的 View 代码,我不确定。

关于backbone.js - Backbonejs collection.fetch() 不工作 : Cannot call method 'apply' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8995763/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com