본문 바로가기

De2o freelancer (OCR)

thymeleaf 조건 처리

반응형
 <div class="col-sm-12 radio_form" th:if="${banner.bannerUseYn.equals(true)}">
       <input type="radio" checked="checked" class="form-control" name="bannerUseYn" value="True">True
       <input type="radio" class="form-control" name="bannerUseYn" value="False">False
</div>
<div class="col-sm-12 radio_form" th:unless="${banner.bannerUseYn.equals(true)}">
       <input type="radio" class="form-control" name="bannerUseYn" value="True">True
       <input type="radio" checked="checked" class="form-control" name="bannerUseYn" value="False">False
 </div>

 

th:if와 th:unless로 구분 가능하고

banner.bannerUseYn.equals() 와 같이 값의 비교 수행가능.

반응형

'De2o freelancer (OCR)' 카테고리의 다른 글

데이터 테이블 thead-dark  (0) 2020.11.25
SpringBoot 세션 유지시간 Configure  (0) 2020.11.12
Input date type thymeleaf  (0) 2020.10.30
Merge conflict 해결 방법  (0) 2020.10.08
고정 Sidebar  (0) 2020.10.06