여씨의 개발이야기
[Thymeleaf 입문] html에 텍스트를 출력하고 싶을 때 본문
Thymeleaf에서 html에 텍스트를 뿌려주고 싶을 때 두 가지 방법이 있다.
1. html 속성 내에 th:text를 이용하기
<div class="example-tag" th:text="${arrayItem.getVal}"></div>
추가로 html태그가 포함됐을 경우에는 unescaped text를 출력해주는 th:utext를 사용한다.
2. 그대로 출력하기
<div class="example-tag">[[${arrayItem.getVal}]]</div>
'🐾 Programming Lang > 🍃 Thymeleaf' 카테고리의 다른 글
[Thymeleaf 입문] 반복문에서 행 번호를 입력하고 싶을 때 (0) | 2022.10.25 |
---|---|
[Thymeleaf 입문] Thymeleaf란? (1) | 2022.06.08 |
Comments