th:checked 复选框回显问题

复选框回显 th:checked

thymeleaf复选框回显 th:checked
第一种:

<label class="checkbox-inline check-box" th:each="dict : ${@dict.getType('valid_complaints')}"> 
				<input
					type="checkbox" th:value="${dict.dictValue}"
					th:text="${dict.dictLabel}"
					name="fqzdcInvestigateAppraise.validComplaints"
					th:if="${investigateMain.fqzdcInvestigateAppraise.validComplaints!=null}"
					th:attr ="checked=${investigateMain.fqzdcInvestigateAppraise.validComplaints.contains(dict.dictValue)?true:false}"
					>
				<input
					type="checkbox" th:value="${dict.dictValue}"
					th:text="${dict.dictLabel}"
					name="fqzdcInvestigateAppraise.validComplaints"
					th:if="${investigateMain.fqzdcInvestigateAppraise.validComplaints==null}"
					>
				</label>

直接添加:
th:attr =“checked=${investigateMain.fqzdcInvestigateAppraise.validComplaints.contains(dict.dictValue)?true:false}” 在页面显示出来

第二种:

<label class="checkbox-inline check-box" th:each="dict : ${@dict.getType('valid_complaints')}"> 
				<input
					type="checkbox" th:value="${dict.dictValue}"
					th:text="${dict.dictLabel}"
					name="fqzdcInvestigateAppraise.validComplaints"
					th:if="${investigateMain.fqzdcInvestigateAppraise.validComplaints!=null}"
					th:checked="${#arrays.contains(#strings.arraySplit(investigateMain.fqzdcInvestigateAppraise.validComplaints,','),#strings.toString(dict.dictValue))}"
					>
				<input
					type="checkbox" th:value="${dict.dictValue}"
					th:text="${dict.dictLabel}"
					name="fqzdcInvestigateAppraise.validComplaints"
					th:if="${investigateMain.fqzdcInvestigateAppraise.validComplaints==null}"
					>
				</label>

直接添加:
th:checked="${#arrays.contains(#strings.arraySplit(investigateMain.fqzdcInvestigateAppraise.validComplaints,’,’),#strings.toString(dict.dictValue))}",其中investigateMain.fqzdcInvestigateAppraise.validComplaints 是你的业务代码值,比如a,b,c.

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值