2

好的,所以我很难让事件绑定与 Coffeescript 和 Backbone 一起工作。我觉得这与我如何初始化所有内容有关。我觉得事件委托甚至都没有运行。

这是我的视图代码:

$ ->
  class AppName.TitleView extends Backbone.View
    template: JST['templates/title']
    collection: new AppName.Members
    events:
      "keypress #search"      : "search",
    initialize: =>
      $('#search').keypress(@search) #doing it manually as a hack
    search: ->
      console.log('search handler call')
    render: =>
      $('#app').html(@template)
      @delegateEvents() #this doesn't seem to do anything, nor does @delegateEvents(@events)
      @

编译时,它看起来像这样:

(function() {
  var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },
    __hasProp = Object.prototype.hasOwnProperty,
    __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor; child.__super__ = parent.prototype; return child; };

  $(function() {
    AppName.TitleView = (function(_super) {

      __extends(TitleView, _super);

      function TitleView() {
        this.render = __bind(this.render, this);
        this.initialize = __bind(this.initialize, this);
        TitleView.__super__.constructor.apply(this, arguments);
      }

      TitleView.prototype.template = JST['templates/title'];

      TitleView.prototype.collection = new AppName.Members;

      TitleView.prototype.events = {
        "keypress #search": "search",
      };

      TitleView.prototype.initialize = function() {
        return $('#search').keypress(this.search);
      };


      TitleView.prototype.search = function() {

        console.log('search handler call'););
        });
      };

      TitleView.prototype.render = function() {
        $('#app').html(this.template);
        this.delegateEvents();
        return this;
      };

      return TitleView;

    })(Backbone.View);
  });

}).call(this);

AppName.TitleView从我的路由器(又由 main 启动app.coffee)启动:

$ ->
  class AppName.Router extends Backbone.Router
    routes:
      ".*": "main"

    main: ->
      @titleView ||= new AppName.TitleView el: $('#app')[0]
      @titleView.render()

但是对于我的生活,我无法#search从 Backbone Events 绑定到绑定。我的 hack(在代码中)只是通过initialize函数中的 jQuery 进行绑定。

知道发生了什么吗?我希望这是一个简单的错字或错误的初始化。

4

1 回答 1

5

el使用 jQuery 的委托形式将视图事件绑定到视图on。这意味着您在视图events对象中提到的所有内容都必须在视图中el,否则不会触发事件处理程序。

默认情况下,视图el是空的,视图将在需要时<div>创建该视图并将事件绑定到该视图。您可能会注意到您没有在代码中使用或任何地方;您的事件已正确绑定,但它们已绑定到您放入 DOM 的任何内容,因此看起来事件无法正常工作。<div><div>this.elthis.$el

出现了两种直接的可能性:

  1. 用作#app视图的el

    class AppName.TitleView extends Backbone.View
      #...
      el: '#app'
      #...
      render: =>
        @$el.html(@template)
        @
    
  2. 以通常的 Backbone 方式做事,并el为您的视图创建一个公正的:

    class AppName.TitleView extends Backbone.View
      #...
      render: =>
        @$el.html(@template)
        @
    
    v = new AppName.TitleView
    $('#app').append(v.render().el)
    

我推荐后者,因为它更易于管理,并且可以帮助您避免将多个视图附加到同一个 DOM 元素(以及由此产生的僵尸)。

此外,@template几乎总是一个函数,所以你想说:

$('#app').html(@template())
于 2013-03-24T20:47:30.307 回答