Backbonejs查看自我模板replaceWith和活动(Backbonejs View Sel

2019-10-17 15:42发布

我对我的第一个应用工作使用bbjs,经过10个教程和无尽的来源我想拿出我的代码设计。

我问什么是有意见和模板的最佳实践。 另外还有一个问题的事件,我挣扎。 据我所知,该视图是负责一个元素及其内容(和其他子视图)。 对于代码是可管理的,可测试等。元素/模板是将被传递到上创建的图。 在我的应用程序恕我直言,认为应持有的模板,因为可见的元素有很多个“状态”并为每个国家不同的模板。 当状态的改变,我猜它最好创建一个新的观点,但是,是有可能的观点表示赞同新元素更新?

App.Box = Backbone.Model.extend({
    defaults: function() {
        return {
            media: "http://placehold.it/200x100",
            text: "empty...",
            type: "type1"
        };
    }
});


App.BoxView = Backbone.View.extend({
    template: {},
    templates: {
            "type1": template('appboxtype1'),
            "type2": template('appboxtype2')
    },
    events: {
      'click .button': 'delete'
    },
    initialize: function(options) {
        this.listenTo(this.model, 'change', this.render);
        this.listenTo(this.model, 'destroy', this.remove);

        this.render();
    },

    render: function() {
        this.template = this.templates[ this.model.get("type") ];

        // first method
        this.$el.replaceWith(  $($.parseHTML(this.template(this)))  );
        this.$el.attr("id", this.model.cid);

        // second method
        var $t_el = this.$el;
        this.setElement( $($.parseHTML(this.template(this))) );
        this.$el.attr("id", this.model.cid);
        $t_el.replaceWith(  this.$el  );
        this.delegateEvents();

        //$('#'+this.model.cid).replaceWith(  $(g.test.trim()) );


        //! on the second render the events are no longer bind, deligateEvents doesn't help


        return this;
    },

    // get values
    text: function() { return this.model.get('text');  },
    media: function() { return this.model.get('media');  },
    delete: function() {
        this.model.destroy();
    }
});

感谢名单! :)

Answer 1:

而不是试图取代视图的根元素($ EL),只需更换它的内容。

this.$el.html(this.template(this));

活动还应该再工作。



Answer 2:

我想出了这个解决方案: http://jsfiddle.net/Antonimo/vrQzF/4/

如果任何人有一个更好的主意了随时欢迎!

基本上,考虑到:

        var t_$el = this.$el;
        this.$el = $($.parseHTML(this.template(this)));
        this.$el.attr("id", this.cid);
        if (t_$el.parent().length !== 0) { // if in dom
            this.undelegateEvents();
            t_$el.each(function(index, el){ // clean up
                if( index !== 0 ){ $(el).remove(); }
            });
            t_$el.first().replaceWith(this.$el);
            this.delegateEvents();
        }


Answer 3:

尝试这个

render: function() {
    html = '<div>your new html</div>';
    var el = $(html);
    this.$el.replaceWith(el);
    this.setElement(el);
    return this;
}

$ .replaceWith只会替换DOM元素。 但是这一点。$ EL仍持有到现在流离失所旧元素的引用。 你需要调用this.setElement(..)来更新这个。$ EL领域。 调用setElement还将为您undelegateEvents和delegateEvents事件。



文章来源: Backbonejs View Self Template replaceWith and Events