# in the handlebars template
{{action "do_something" target="view"}}
# in the view
APP.view = Ember.View.extend(
do_something: (evt) ->
console.log evt #this used to contain a javascript event object, it was useful at times :(
)
我知道我可以在上下文中传递。但我想知道是否有办法获得实际事件。