ukulelejs icon indicating copy to clipboard operation
ukulelejs copied to clipboard

事件机制还有优化空间

Open momoko8443 opened this issue 7 years ago • 0 comments

<component id="mycomp" uku-oncustomevent="myCtrl.handler()"></component>

handler传递不了data参数

function MyCtrl(uku){
    document.getElementById("mycomp").addEventListener("customevent",function(e){
       //不触发,注册事件的时机有讲究,必须要等component初始化成功,因为component的实力实际上会被替换(在ukulelejs生效的过程中)
    });
}

momoko8443 avatar Apr 25 '17 06:04 momoko8443