[Spring Boot] thymleaf / radio button/ 라디오 버튼 / th:field / enum

seulki·2022년 11월 29일
0

[springboot]

목록 보기
14/27

🎈 enum, 컨트롤러



👌addForm.html

  • 라디오 버튼은 반드시 하나는 선택되어야 하기 때문에, hidden값이 없다.
<div>
	<div>상품 종류</div>
	<div th:each="type : ${itemType}" class="form-check form-check-inline">
			<input type="radio" th:field="*{itemType}" th:value="${type.name()}" 
                   class="form-check-input">
			<label class="form-check-label" th:for="${#ids.prev('itemType')}" 
                   th:text="${type.description}"></label>
	</div>
</div>

  • enum

-> name() -> 열거 객체의 문자열을 리턴

profile
웹 개발자 공부 중

0개의 댓글