2

我正在使用 Backbone.js 构建一个应用程序,其中显示项目列表和占位符“新”项目。容器是一个包含所有子视图并呈现它们的视图。

我已经搜索了一段时间,但无法让它工作。问题是模板中的“添加”按钮没有触发事件。我猜这是因为渲染发生在稍后的时间点,所以没有分配事件。阅读其他帖子应该由 Backbone.js 处理,但似乎并非如此。在完成这项工作之后添加一个 jQuery 事件处理程序,render()但我认为这不是解决方案。

这是视图的相关代码:

template: _.template($("#template-time-new").html()),
events: {
  'click #btn-new-time': 'onButtonNewClick'
},
render: function() {
  this.$el.html(this.template());

  return this;
},

onButtonNewClick: function() {
  return false; // in this case: prevent page reload
}

我的模板(玉):

script(type="text/template", id="template-time-new").
<h3>
  <label for="new-time-name" class="muted">Name:</label>
  <input id="new-time-name" type="text">
</h3>
<div class="time-inner">
  <form class="form-horizontal">
    <label for="new-time-start" class="muted">From:</label>
    <input id="new-time-start" type="datetime-local">

    <label for="new-time-end" class="muted">to</label> 
    <input id="new-time-end" type="datetime-local">

    <button class="btn" id="btn-new-time">
      Add
    </button>
  </form>
</div>

编辑:

这是父视图中的代码:

initialize: function() {
  this.newView = new TimeSpanNewView; // <---- the view that is not really working

  this.render();

  // bind event handlers
  this.collection.on('all', this.render, this);
  // fetch data
  this.collection.fetch();
},

render: function() {
  var self = this;

  self.$el.empty();

  if ( self.collection.length > 0 ) {
    self.collection.each(function(timespan) {
      var subView = new TimeSpanView({ // sub views for the items, everything fine here
        model: timespan
      });

      subView.render()
      self.$el.append(subView.el);
    });
  } else {
    self.$el.text("Nothing found.");
  }

  self.$el.append(self.newView.render().el);

  return self;
}
4

1 回答 1

2

删除了之前的评论。好吧,您必须每次render()都在父视图中渲染它。但不是做self.$el.html("");try self.$el.children().detach()。并将子视图添加为

self.$el.append(self.newView.render().el);

说明: $el 已经包含您的子视图,您不想完全删除子视图。因此,您需要对此调用 detach() - 它从页面中删除子视图的 DOM 对象,但不会完全删除它。

于 2013-07-11T21:46:28.747 回答