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>
|
'교육 > Spring Boot' 카테고리의 다른 글
#98 Modal에서 Ajax로 DB 연동 (0) | 2019.10.04 |
---|---|
#89 thymeleaf th:include을 이용하여 레이아웃 분리 (0) | 2019.09.20 |
#85 MyBatis AS 대신 resultMap 활용하기 (0) | 2019.09.16 |
#75 Spring 인터셉터 로그인체크 (0) | 2019.08.29 |
#63 Spring Boot thymeleaf 변수를 script에서 사용하기 (0) | 2019.08.09 |