最近,路线/控制器/视图上的Ember.js was updated so that action event handlers are defined in an actions
object.因此,事件处理程序不再是原型上的常规方法.
如果使用extend继承(例如)控制器,是否仍然可以覆盖然后调用超类的处理程序?
只是调用_super不起作用:
FormController = Em.ObjectController.extend({
actions: {
submit: function() { this.get('model').save(); }
}
});
SpecialFormController = FormController.extend({
actions: {
submit: function() {
this.set('special',true);
this._super(); // doesn't work
}
}
});
最佳答案
Ember让你可以做你想做的事.这是一个JSFiddle,演示了它是如何工作的:
原文链接:https://www.f2er.com/js/429803.htmlApp.BaseController = Em.ArrayController.extend({
actions: {
nameAlert: function(person){
window.alert('alert from BaseController: ' + person.lastName + ',' + person.firstName);
}
}
});
App.IndexController = App.BaseController.extend({
actions: {
nameAlert: function(person){
this._super(person);
window.alert('alert from IndexController: ' + person.lastName + ',' + person.firstName);
}
}
});
当Ember创建一个对象时,它会专门包装这些函数,以便它们可以使用_super.