1

我正在触发一个事件。触发并成功执行。下面是代码。

 ItemView = Backbone.View.extend({
 events: {
  "click":"onClick"
  },
 onClick: function() {
  //trigger a custom event, passing the view as first argument
   Events.trigger('click', this);
  }
});

  ListView = Backbone.View.extend({
  initialize: function() {
       this.listenTo(Events, 'click', this._onClick);

    },
   _onClick:function(itemView) {
      //...
       return x;

     }
    });

但我想返回触发事件的数据。在 _onClick 我想返回一些数据。

因为我们只做Events.trigger("methodname", parameters)。如何从 _onClick 函数中获取上述情况下为 x 的返回数据到 ItemView 中的 OnClick。

4

1 回答 1

2

像这样的东西怎么样:

将您需要的任何东西包装在一个对象中并使用它。

 ItemView = Backbone.View.extend({
 events: {
  "click":"onClick"
  },
 onClick: function() {
  //trigger a custom event, passing the view as first argument
   var dataObj = { 'ItemView': this, 'otherProp': 'other value' };
   Events.trigger('click', dataObj);
  }
});

  ListView = Backbone.View.extend({
  initialize: function() {
       this.listenTo(Events, 'click', obj);

       obj.ItemView._onClick(obj);


    },
   _onClick:function(obj) {
      //...
       return x;

     }
    });
于 2013-10-07T10:57:58.910 回答