해결된 질문
작성
·
272
0
<div>상품 종류</div>
<div th:each="type : ${itemTypes}" class="form-check form-check-inline">
<input type="radio" th:field="*{itemType}" class="form-check-input">
<label th:for="${#ids.prev('itemType')}"
th:text="${type.description}" class="form-check-label"> BOOK </label>
</div>
여기서 thymeleaf 로 Model 객체 내 에 있는 itemTypes 인 enm 배열을 받아서 사용하는거잖아요?
그러면 정적 값들을 하나도 적어놓을 필요가 없는데 왜 BOOK만 적어놓은건가요?