1.自体通信
cmp:<><>
js:cmp.getEvent("").fire()
2.子親通信
親cmp:<>
子cmp:<>
子js:cmp.getEvent("").fire()
3.親子通信(下記のやり方で通信できません)
子cmp:<>
親cmp:<>
親js:cmp.getEvent("").fire()
4.親子通信(下記のやり方で通信できる)
子cmp:<>
子controll.js:call:function (component, event, helper) {}
親controll.js:
var aaa = component.find("子aura:id");
aaa.call();