여씨의 개발이야기

[Thymeleaf 입문] html에 텍스트를 출력하고 싶을 때 본문

🐾 Programming Lang/🍃 Thymeleaf

[Thymeleaf 입문] html에 텍스트를 출력하고 싶을 때

yeossi 2022. 10. 25. 17:05

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>

 

Comments