我有两个控制器如下。
App.CreditIndexController = Ember.ArrayController.extend({
viewAll: function(){
//Some code
}
})
App.CreditVoucherController = Ember.ArrayController.extend({
needs: ['creditIndex'],
viewAllVoucher: function(){
this.get('controller.controllers.creditIndex').viewAll();
}
})
我试图viewAll
从CreditVoucherController
. 但它没有奏效。有什么办法。