2019.09.30

 

 db에서 조회한 값을 가지는 select 값 즉, 동적 select 값을 고정하려면 thymeleaf selected 속성을 이용하여 해결할 수 있다

 

 

 

 

 

 파라미터 값과 현재 select 값이 같다는 조건을 줘 selected가 되게 함

 

1
2
3
4
5
6
7
<option 
       th:text="${shop.memberId} +' : '+ ${shop.shopName}" 
       th:value="${shop.contractShopCode}" 
       th:selected="${shop.contractShopCode eq param?.selectShopCode?.toString()}"
       id="shopValue"
></option>
 

 

+ Recent posts