Sencha this 사용시 주의사항

2025. 1. 21. 22:56Javascript/Sencha

{} 안에서 this가 적용되기 때문에 onClick_search()를 찾지 못함

onAfterRender_App: function(ctrl, eOpts) {
    this.refreshNamespace(() => {
    	this.onClick_search();
    });
}

{} 밖에 this를 정의하여 호출하면, onClick_search()을 찾을 수 있음

onAfterRender_App: function(ctrl, eOpts) {
    const me = this;
    this.refreshNamespace(() => {
    	me.onClick_search();
    });
}