Sencha html 태그에서 변수 호출하기

2024. 12. 25. 17:04Javascript/Sencha

Uncaught ReferenceError: a is not defined

const test = a;

생략

{
    text: 'Image',
    dataIndex: 'image',
    renderer: function(value) {
        return '<a href="javascript:alert(a);">보기</a>';
    }
}

해결방법1: 변수를 global로 정의

const test = a;
window.a = a;

해결방법2: 변수가 아닌 함수를 호출

const test = a;

function test() {
	alert(a);
}

생략

{
    text: 'Image',
    dataIndex: 'image',
    renderer: function(value) {
        return '<a href="javascript:test();">보기</a>';
    }
}