Backbone View事件未触发

时间:2011-06-18 00:53:03

标签: javascript javascript-events backbone.js

我使用Rails3作为我的后端,Jammit使用资产......现在我试图不压缩甚至打包这些。

简单事件不会运行,但警报('asd')int inialize正在按预期运行。

我已经在其他对象中尝试了其他类型的事件,但它没有用。

我的代码如下:

var InvoiceStock = Backbone.View.extend({
  initialize: function(args) {
    _.bindAll(this, 'find_product', 'product_added');

    this.products = new ProductCollection();

    this.products.bind('add', this.product_added);

    alert('asd');
  },

  events: {
    "keypress #product_finder": "find_product"
  },

  find_product: function(e) {
    alert('teste');
  },

  product_added: function(product) {
    alert('pqp4');
  }
});

和我的RUBY HTML:

 <%= text_field 'search', :isbn_or_isbn10_or_publisher_or_authors_or_name_like, :id => 'product_finder' %> ou
 <%= link_to 'criar um produto', '', :id => 'new_product_link' %>.

生成这个:

<label>Adicionar</label>
<input id="product_finder" class="ui-autocomplete-input" type="text" size="30" name="search[isbn_or_isbn10_or_publisher_or_authors_or_name_like]" autocomplete="off" role="textbox" aria-autocomplete="list" aria-haspopup="true">
ou
<a id="new_product_link" href="">criar um produto</a>

1 个答案:

答案 0 :(得分:58)

骨干视图发生在元素的上下文中。为了使此代码有效,您必须在构造时将该元素分配给View,如下所示:

var InvoiceStock = Backbone.View.extend({
    el: $('#product_finder').parent()

...

或者为el分配包含产品查找器的特定DOM对象。作为替代方案,您可以动态生成元素并使用jQuery将其附加到DOM。我用过这两个。

Backbone使用jQuery委托来指定和上下文化事件。如果您没有为整个视图指定父元素,则Backbone不会正确分配事件管理器。