5

我正在使用backbone.js 来实现一个好友列表,也就是名册。我对名册集合和个人的主干观点rosterEntry如下:

    Slx.Roster.Views.RosterEntry = Backbone.View.extend({
    tagName: "li",
    className : "rosterEntry clearfix",
    templateSelector: '#rosterEntryTemplate',

    initialize: function() {
        _.bindAll(this, 'render');
        this.model.bind('change', this.render);
        this.model.bind('remove', this.remove);
        this.template = _.template($("#rosterEntryTemplate").html());
    },

    remove: function () {
        debug.log("Called remove event on model");
        $(this.el).remove();
    },
    render: function() {
        var renderedContent = this.template(this.model.toJSON());
        this.id = this.model.Id;
        $(this.el).attr('id', "friendid-" + this.model.get("id")).html(renderedContent);
        return this;
    }
});

    Slx.Roster.Views.Roster = Backbone.View.extend({
        el: "div#roster-container",
        initialize: function () {
            _.bindAll(this, 'render', 'add', 'remove');
            this.template = _.template($("#rosterTemplate").html());
            this.collection.bind('reset', this.render);
            this.collection.bind('add', this.add);
            this.collection.bind('remove', this.remove);
        },
        add: function (rosterEntry) {
            var view = new Slx.Roster.Views.RosterEntry(
                {
                    model: rosterEntry
                });
            $(this.el).append(view.render().el);
        },
        remove: function (model) {  // if I ommit this then the whole collection is removed!!
            debug.log("called remomve on collection");
        },
        render: function () {
            var $rosterEntries, collection = this.collection;

            $(this.el).html(this.template({}));
            $rosterEntries = this.$('#friend-list');

            _.each(collection.models, function (model) {
                var rosterEntryView = new Slx.Roster.Views.RosterEntry({
                    model: model,
                    collection: collection
                });

                $(this.el).find("ul#friend-list").append(rosterEntryView.render().el);
            }, this);

            return this;
        }
    })

我现在正在使用 Firebug 控制台进行测试,并且可以通过执行以下命令很好地填充花名册:

collection = new Slx.Roster.Collection
view = new Slx.Roster.Views.Roster({collection:collection})
collection.fetch()

通过在 Firebug 控制台中执行以下命令,添加到集合也可以正常工作:

collection.add(new Slx.Roster.Model({username:"mickeymouse"})

并且新rosterEntry的被添加到名册中。

我的问题是collection.remove(5)从内存集合中删除,但没有更新 DOM。

奇怪的是,如果我remove()从名册视图中省略该函数,名册中的所有条目都会被删除。如果我添加了这个方法,除了控制台日志之外什么都没有,它RosterEntry会调用名册和视图上的 remove 方法 - 虽然我不知道为什么,但它们是乱序的!

["Called remove event on model"]
["called remomve on collection"]

如果我从 RosterEntry 模型中删除删除功能,我会收到此错误:

TypeError: this.$el is undefined
this.$el.remove();

我究竟做错了什么?从集合中删除元素时,如何从 DOM 中删除元素?

4

3 回答 3

2

我认为您context在每个事件绑定定义中都有问题。

尝试改变这一点:

this.model.bind('remove', this.remove);

为了这:

this.model.bind('remove', this.remove, this);

我知道您已尝试使用 解决此问题bindAll,但是bindAll正在使用实际对象的上下文包装对列出的方法的每个调用,但是如果您在其他对象上调用相同的方法,这将无济于事:)。

更新

我已经阅读了更多.. 看起来bindAll和命令的第三个参数bind完全一样。所以也许你可以使用其中一个。

因为bindAll在其中不起作用是model.remove因为您忘记将其添加到该_.bindAll(this, 'render')行中,请查看您的代码。我的建议解决了这个问题,因为正如我所说,两种方法都是一样的。

所有这一切都是为了确保对列出的方法的调用(render, remove, ...在一种情况下或this.remove另一种情况下)将被解释this为对实际对象的引用。这看起来很愚蠢,但在 JSthis中非常不稳定。

如果您仍然对这件事感到困惑,请不要担心this,我已经处理了很长时间,但仍然没有完全确定

也许这样的论文可以帮助我们。

于 2012-04-16T18:33:44.840 回答
0

您是否尝试过以下操作?

this.listenTo(this.model, "remove", this.remove);

这似乎对我有用,我更喜欢它的阅读方式。

链接到主干文档

于 2013-04-26T19:32:31.433 回答
-1

两个视图上的 remove 方法可能都被调用了,因为您必须在模型和集合上都删除。

在名册条目中:

 this.model.bind('remove', this.remove);

在名册中:

this.collection.bind('remove', this.remove);
于 2012-04-16T17:57:53.373 回答