10

基本上我需要做这样的事情

App.CommentView = Backbone.View.extend({
  className: function() {
    if (this.model.get('parent_id')) {
      return 'comment comment-reply';
    } else {
     return 'comment';
    }
  },

问题是,传递给的函数className是在视图模板的 html 上下文中执行的,所以我不能调用this.model.

有什么方法可以在渲染过程中访问模型吗?或者我是否需要稍后设置类,例如在render函数中?

4

4 回答 4

14

这听起来像是模型绑定的工作。

App.CommentView = Backbone.View.extend({
  initialize: function () {
      // anytime the model's name attribute changes
      this.listenTo(this.model, 'change:name', function (name) {
          if (name === 'hi') {
             this.$el.addClass('hi');
          } else if......
      });
  },
  render: function () {
       // do initial dynamic class set here
  }
于 2012-03-31T14:58:23.177 回答
3

您应该使用属性哈希/函数:

attributes: function () {
 //GET CLASS NAME FROM MODEL
 return { 'class' : this.getClass() }
},
getClass: function() {
   return this.model.get('classname')
}
于 2012-11-07T21:29:41.397 回答
2

this.$el.toggleClass我认为使用或简单地在里面添加类会容易得多render

但是,如果要在构建视图时设置类,可以将其作为选项传递:

view = new App.CommentView({
  model: model,
  className: model.get('parent_id') ? 'comment comment-reply' : 'comment'
})
于 2012-03-31T14:28:07.953 回答
0

我在视图初始化时做到了

App.CommentView = Backbone.View.extend({
    initialize: function() {
        if(this.model.get("parent_id"))
            this.$el.addClass("comment-reply");
    },
于 2018-09-22T08:41:18.657 回答