IT/development

[thyemeleaf] select option값 list loop

알 수 없는 사용자 2023. 4. 26. 21:11
반응형

요즘에 업무가 너무 바빠서 코드로 대체함

controller

//코드값 조회 후 화면에 데이터 전달
List<CommonCdVo> tList = commonService.selectCommonDtlCodeList("T");
model.addAttribute("tList", tList);

html

<select name="cd">
    <option value="">전체</option>
    <option th:each="list : ${tList}" th:value="${list.dtlCd}" th:utext="${list.dtlCdDesc}"></option>
</select>

th:value는 서버로 전송할 value값이 세팅되고 th:utext는 화면에 보여질 텍스트가 세팅된다.

반응형