HTML(4)
-
Sencha panel에 html을 사용하여 이미지 나오게 하기
Ext.application({ name: 'ImageApp', launch: function () { Ext.create('Ext.container.Viewport', { layout: 'fit', items: [ { xtype: 'panel', title: 'Image Display', html: '' } ] }); }});
2024.12.05 -
HTML 한글깨짐 2024.12.01
-
HTML 파일에 Sencha 적용
Sprng boot Security가 적용 안된 경우# spring boot에서 한글깨지는 문제 해결을 위해서 설정# Ext를 참조하기 위해서 적용# Ext.getBody()를 적용하기 위해서 스크립트 보다 먼저 생성되어야 함Sprng boot Security가 적용된 경우에러 발생Refused to execute script from 'http://localhost:{port}/login' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.Understand this errorlogin:17 Uncaught ReferenceError: Ext is not defined at l..
2024.07.13 -
Spring boot 한글처리
Centos7에서 특별한 조치 없이 한글 잘 나옴 단, html은 아래 메타 태그를 넣어야 한글이 안 깨짐 테스트 한글
2021.01.11