胸腺显示复选框仅在选中时

时间:2018-12-29 10:00:54

标签: spring spring-boot thymeleaf

在我的Spring项目中,我正在显示数据库中的复选框列表,并且复选框显示正确。但是,与选中的框一起,未选中的框也会显示出来。

<div class="form-group col-xs-12 col-sm-12 col-md-6">
<label for="deptLoc">Dept Location</label>                                                                
<div class="input-group" th:each="deptLoc: ${DevApproach}" >                                                                                                                                                                        
<input type="checkbox" th:value="${deptLoc.id}"  th:field="*{deptLocations}" disabled/>

</div>                                                                                
</div>  

如何仅显示选中的复选框?

1 个答案:

答案 0 :(得分:0)

您可以尝试以下

<input th:if="${deptLoc.id == true}" type="checkbox" th:value="${deptLoc.id}"  th:field="*{deptLocations}" disabled/>