我正在使用Ember的Need Api来调用另一个控制器中的控制器方法.我能够获取控制器的实例,但是当我调用它时,它返回给我这个错误TypeError:Object [object Object]没有方法.
这就是我所说的:
Cards.CardsIndexController = Ember.Controller.extend({ needs: 'account_info',actions: { accountInfoStart:function(){ console.log(this.get('controllers.account_info').test()); // error here } } });
Cards.AccountInfoController = Ember.Controller.extend({ actions:{ test: function(){ alert(1); } } });
我该如何解决?