오봉이와 함께하는 개발 블로그
스프링 MVC 2 - 타임리프 조건부 평가 본문
728x90
조건부 평가
타임리프의 조건식이다.if
, unless
가 있다.unless
는 if
의 반대다.
코드
@GetMapping("/condition")
public String condition(Model model) {
addUsers(model);
return "basic/condition";
}
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>if, unless</h1>
<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 ge 20}"></span>
</td>
</tr>
</table>
<h1>switch</h1>
<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 th:switch="${user.age}">
<span th:case="10">10살</span>
<span th:case="20">20살</span>
<span th:case="*">기타</span>
</td>
</tr>
</table>
</body>
</html>
if, unless
타임리프는 해당 조건이 맞지 않으면 태그 자체를 렌더링하지 않는다<span th:text="'미성년자'" th:if="${user.age lt 20}"></span>
일 때
조건이 false인 경우 <span>...<span>
부분 자체가 렌더링 되지 않고 사라진다.
switch
*
은 만족하는 조건이 없을 때 사용하는 디폴트다.switch-case
에서 default
의 역할이다.
출처 : 인프런 김영한 지식공유자님 강의 스프링 MVC 2편 - 백엔드 웹 개발 활용 기술
728x90
'BE > Thymeleaf' 카테고리의 다른 글
스프링 MVC 2 - 타임리프 블록 (0) | 2022.08.17 |
---|---|
스프링 MVC 2 - 타임리프 주석 (0) | 2022.08.17 |
스프링 MVC 2 - 타임리프 반복문 (0) | 2022.08.17 |
스프링 MVC 2 - 타임리프 속성 값 설정 (0) | 2022.08.16 |
스프링 MVC 2 - 타임리프 연산 (0) | 2022.08.16 |
Comments