Sencha html 태그에서 변수 호출하기
Uncaught ReferenceError: a is not definedconst test = a;생략{ text: 'Image', dataIndex: 'image', renderer: function(value) { return '보기'; }}해결방법1: 변수를 global로 정의const test = a;window.a = a;해결방법2: 변수가 아닌 함수를 호출const test = a;function test() { alert(a);}생략{ text: 'Image', dataIndex: 'image', renderer: function(value) { return '보기'; }}
2024.12.25