有没有办法检查Marionette 视图上的活动绑定?
绑定在控制器中创建如下:
// controllers/custom_controller.js
this.customView.bind("some:custom:event", this.customEventHandler, this);
自定义事件在视图中触发:
// views/custom_view.js
onSomething: function() {
this.trigger("some:custom:event");
}
我想检查是否this.customView
有事件处理程序some:custom:event
。