티스토리 뷰
속성 덮어쓰기
- 기존, html 속성을 th:~ 로 표현할경우 th로 설정한 값으로 대체된다
- ex)
- <input type="text" name="loginId" th:name="id">
- 타임리프 렌더링 후 -> <input type="text" name="id"> 로 렌더링
반복
- th:each=" [변수] : ${[넘어온 값]}"
- userStat
- thymeleaf에서 제공해주는 상태값 확인
- index, count, size, event, odd, first, last ,current 지원
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"
<title>Thymeleaf Example</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<table border=1>
<tr>
<th>username</th>
<th>age</th>
</tr>
<tr th:each="user, userStat: ${users}">
<td th:text="${user.username}">username</td>
<td th:text="${user.age}">0</td>
<td>
index= <span th:text="|${userStat.index} 번째,|">null,</span>
count= <span th:text="|${userStat.count} 번째,|">null,</span>
size= <span th:text="|${userStat.size} 개,|">null,</span>
even= <span th:text="|${userStat.even} 짝수번째,|">null,</span>
odd= <span th:text="|${userStat.odd} 홀수번째,|">null,</span>
first= <span th:text="|${userStat.first} 첫번째위치,|">null,</span>
last= <span th:text="|${userStat.last} 마지막위치,|">null,</span>
current= <span th:text="|${userStat.current} 현재위치|">null</span>
</td>
</tr>
</table>
</body>
</html>
조건
- if / unless
- 종류
- th:if="[조건]" : 조건이 참일 때, 실행
- th:unless="[조건]" : 조건이 거짓일 때, 실행
- 사용법
- <span th:text="조건참일때 결과" th:if="{[조건]}"></span>
- <span th:text="조건 거짓일때 " th:unless="{[조건]}"></span>
- 종류
- switch
- 종류
- th:switch = "${[값]}"
- th:case="[값]"
- 사용법
- 밑의 코드 참고
- 종류
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thymeleaf Example</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- IF / Unless 예시 -->
<table border=1>
<tr>
<th>count</th>
<th>username</th>
<th>age</th>
</tr>
<tr th:each="user, userStat: ${users}">
<td th:text="${userStat.count}">1</td>
<td th:text="${user.username}">username</td>
<td>
<span th:text="${user.age}">0</span>
<span th:text="'미성년자'" th:if="${user.age lt 20}"></span>
<span th:text="'성인'" th:unless="${user.age lt 20}"></span>
</td>
</tr>
</table>
<hr size=10 color=red>
<!-- Switch 예시 -->
<table border=1>
<tr>
<th>count</th>
<th>username</th>
<th>age</th>
</tr>
<tr>
<td th:text="${userStat.count}">1</td>
<td th:text="${user.username}">username</td>
<td th:switch="${user.age}">
<span th:case="10">10살</span>
<span th:case="20">20살</span>
<span th:case="*">기타</span>
</td>
</tr>
</body>
</html>
'백엔드 > ThymeLeaf' 카테고리의 다른 글
[Thymeleaf] 자체 태그 (th:block , th:inline, th:fragment) (0) | 2024.10.17 |
---|---|
[Thymeleaf] 주석 (1) | 2024.10.17 |
[Thymeleaf] 연산 표현 (연산, 조건 , elvis, no-opration) (0) | 2024.10.17 |
[Thymeleaf] 리터럴 (상수) (0) | 2024.10.16 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Java
- 이진탐색
- 포트폴리오
- DFS
- 기술면접
- 타입변환
- 버블정렬
- BFS
- 클래스
- 오블완
- Spring
- db
- JSON
- 깊이우선탐색
- 정렬
- HTML5
- 우선순위 큐
- 코딩테스트
- 백준
- SQL
- 알고리즘
- 게시판 프로젝트
- stack
- 검증
- 티스토리챌린지
- 예외처리
- Thymeleaf
- bean
- 게시판
- JDBC
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함