개발자의 끄적끄적

[thymeleaf] 타임리프 if unless 사용법 및 예제 본문

개발/thymeleaf

[thymeleaf] 타임리프 if unless 사용법 및 예제

효벨 2021. 2. 3. 02:00
728x90
반응형

[thymeleaf] 타임리프 if unless 사용법 및 예제

 

 

타임리프에서

 

if else 를 사용하는 방법입니다.

 

<span th:if="${text} == 'text'"></span>
<span th:unless="${text} == 'text'"></span>

 

위 내용을 보시면 아시겠지만,

 

if else 가 if unless 로 바뀐 거라고 보시면 되구요!

 

여기서 주의할점은 if 의 조건과 unless 의 조건을 동일하게 적어주어야 

 

정상적으로 동작한다는 점입니다!

 

참고들 하세요!

반응형
Comments