Thymeleaf select 实现默认选中,使用 th:field 字符串无效问题

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>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

我是王小贱

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值