SpringBoot的项目,前端使用Thymeleaf,要实现一个select下拉控件自动选中的功能。
后端传过来一个value的值,下拉列表是个集合数据。也是使用Thymeleaf循环加载的。现在要比对value的值,使下拉列表实现选中的功能:
错误的写法:(这里用浏览器调试会发现,selct的value确实会被赋予后端传递的值,但是下拉框没有被选中)
设备类型:
<select id="maintenanceType" name="maintenanceType" th:value="${maintenanceType}" th:with="type=${@dict.getType('wjs_maintenance_type')}">
<option value="">所有</option>
<option th:each="e : ${type}" th:text="${e['dictLabel']}" th:value="${e['dictValue']}"></option>
</select>
解决方法一:
用官网介绍的那种,后台传递一个对象,然后前端使用 th:field 进行自动选中的判断(使用user对象属性取值project.maintenanceType)
<form class="form-horizontal m" id="form-wjsProjectMaintenanceRecord-edit" th:object="${wjsProjectMaintenanceRecord}">
<div class="form-group">
<label class="col-sm-3 control-label">设备类型:</label>
<div class="col-sm-8">
<select id="maintenanceType" name="maintenanceType" th:field="${project.maintenanceType}" class="form-control"
th:with="type=${@dict.getType('wjs_maintenance_type')}">
<option value="">所有</option>
<option th:each="e : ${type}" th:text="${e['dictLabel']}" th:value="${e['dictValue']}"></option>
</select>
</div>
</div>
</form>
解决方法二:
直接在option中自己处理,用th:selected方法
设备类型:
<select id="maintenanceType" name="maintenanceType" th:value="${maintenanceType}" th:with="type=${@dict.getType('wjs_maintenance_type')}">
<option value="">所有</option>
<option th:each="e : ${type}" th:text="${e['dictLabel']}" th:selected="${maintenanceType} == ${e['dictValue']}" th:value="${e['dictValue']}"></option>
</select>