在我的视图中,我设置了事件监听,如下所示:
Ember.Instrumentation.subscribe("inlineEdit.makeBlue", {
before: function (name, timestamp, payload) {
alert(name, timestamp,payload);
},
after: function () {
}
});
从车把我想用一个动作触发事件:
<a {{action inlineEdit.makeBlue on="mouseDown"}} class="btn ">Blue</a>
不幸的是,这不会触发上述事件监听器。可以从车把触发仪表事件吗?如果是怎么办?