1.使用Helper
将需要封装重复调用的方法封装在helper中,通过helper.functionName调用。
2.直接在JS Controller内部调用
var a = component.get('c.functionName');
$A.enqueueAction(a);
将需要封装重复调用的方法封装在helper中,通过helper.functionName调用。
var a = component.get('c.functionName');
$A.enqueueAction(a);