2

我的应用程序是使用主干构建的。尝试在模型上使用 destroy() 时遇到问题,这是我在 chrome 中得到的错误堆栈:

Uncaught TypeError: Cannot call method 'remove' of undefined backbone-min.js:34
f.extend.remove backbone-min.js:34
g.Events.trigger backbone-min.js:9
f.extend.destroy.d backbone-min.js:14
f.extend.destroy backbone-min.js:14
Backbone.Model.extend.remove ticketModel.js:21
Backbone.View.extend.deleteTicket ticketListView.js:44
b.each.b.forEach underscore-min.js:11
Backbone.View.extend.deleteTicketTickets ticketListView.js:49
f.event.dispatch jquery-1.7.2.min.js:3
f.event.add.h.handle.i

知道这可能是什么吗?

导致错误的代码实际上只是:

model.destroy();

model 确实包含一个模型,console.log(model)因为它应该将对象记录到控制台。

这是模型定义:

define([
    'apiEndpoint'
    ],function(apiEndpoint) {
    var TicketModel = Backbone.Model.extend({
        url: apiEndpoint.url,

        isTicket : function(){
            return ( this.type === 'ticket') ? true : false;
        },

        isTask : function(){
            return ( this.type === 'task') ? true : false;
        },

        //Tells you if the view is selected for bulk actions
        defaults : {
            isSelected: false
        },

        remove : function(){
            this.destroy({success: function(){
                console.log('success');
            }});
        }

    });
    return TicketModel;
});
4

1 回答 1

0

在你看来你为什么打电话model.destroy();?我认为您必须调用model.remove();,因为这是您要销毁的自定义方法。

看起来像在你的视图中你正在调用model.destroy()model.remove但是因为你已经破坏了你的模型,现在你正试图调用未定义对象的删除方法。

于 2012-07-27T13:23:57.723 回答