Thymeleaf 渲染LayuiSelect 下拉框
昨天写的一个项目中使用到了thymeleaf 渲染 layui 中的下拉框
th:field="${item.reserveId}" 绑定对应的 mode 中的属性用于数据的提交保存
th:each="it:${selectReservationUser}" 循环对应数据中的selectReservationUser 每一项使用 it 表示
th:value="${it.id}" 对应每一项数据中id实际提交的数据
th:text="${it.name}" 对应显示的数据名称
th:selected="${item.reserveId == it.id}" 数据回显绑定条件 对应的数据 和 数据库中的数据一致及回显绑定
示例代码:其中的数据可以自己创建modelandView 试试
<select name="reserveId" lay-search="" lay-filter="reserveSelect" id="reserveId" th:field="${item.reserveId}" >
<option value="">个人预约</option>
<option th:each="it:${selectReservationUser}"
th:value="${it.id}" th:text="${it.name}"
th:selected="${item.reserveId == it.id}"></option>
</select>