我想用emberjs 1.8中控制器的参数调用一个action方法。 我可以看到
的例子this.send('actionMethd');
但这里没有传递参数。并且不确定它是否适用于新的ember js版本。
我可以像
那样从动作中调用控制器方法this.controllerFunc(param1,param2);
似乎没有像这样的其他方式工作
this.actionMethd(param1,param2);
任何帮助将不胜感激。
答案 0 :(得分:3)
像这样:
this.send('actionMethd', param1, param2);
请参阅:http://emberjs.com/api/classes/Ember.Controller.html#method_send