Set dynamically className on Backbone view render

对着背影说爱祢 提交于 2019-12-07 02:37:43

问题


I've a Backbone view where the className is set dynamically with a function:

app.Views.ItemRequestView = Backbone.View.extend({

    tagName     : 'tr',

    className   : function(){

        var classRow = '';

        if(this.model.getState() == app.Models.Request.status.wait.key) {
            classRow = app.Models.Request.status.wait.color + ' bolder';
        }
        else if(this.model.getState() == app.Models.Request.status.confirm.key){
            classRow = app.Models.Request.status.confirm.color + ' bolder';
        }

        return classRow;
    },

When I update the model of the view I trigger a change event who render the view. The problem is that the className is not recalculate with the render... How can I recalculate the className when I render the view ?

Anyone have an idea ? Thanks


回答1:


You will have to update your class manually after the render method. Backbone initializes the className of the element of your View only once time during the _ensureElement method:

_ensureElement: function() {
      if (!this.el) {
        var attrs = _.extend({}, _.result(this, 'attributes'));
        if (this.id) attrs.id = _.result(this, 'id');
        if (this.className) attrs['class'] = _.result(this, 'className');
        var $el = Backbone.$('<' + _.result(this, 'tagName') + '>').attr(attrs);
        this.setElement($el, false);
      } else {
        this.setElement(_.result(this, 'el'), false);
      }
}

If you take a look it has a check in case of the element already exists. Anyway, you can do that manually in your render method:

render: function(){
   //Your logic
   this.$el.attr('class', _.result(this, 'className'));
}


来源:https://stackoverflow.com/questions/18330877/set-dynamically-classname-on-backbone-view-render

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!