ember.js – 在另一个控制器Ember中调用控制器方法

前端之家收集整理的这篇文章主要介绍了ember.js – 在另一个控制器Ember中调用控制器方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Ember的Ne​​ed 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);
        }

    }

});

我该如何解决

解决方法

测试在技术上不是一种方法,而是一种动作或事件.改为使用send方法
this.get('controllers.account_info').send('test',arg1,arg2);
原文链接:https://www.f2er.com/js/155479.html

猜你在找的JavaScript相关文章