从Ember.JS中的控制器方法调用操作方法

时间:2014-12-05 16:33:37

标签: ember.js

我想用emberjs 1.8中控制器的参数调用一个action方法。 我可以看到

的例子
this.send('actionMethd');

但这里没有传递参数。并且不确定它是否适用于新的ember js版本。

我可以像

那样从动作中调用控制器方法
this.controllerFunc(param1,param2);

似乎没有像这样的其他方式工作

this.actionMethd(param1,param2);

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:3)

像这样:

this.send('actionMethd', param1, param2);

请参阅:http://emberjs.com/api/classes/Ember.Controller.html#method_send