如何在 spring boot 中从 thymeleaf 获取所有选中复选框的值

How do I get the values of all the selected check box from thymeleaf in spring boot

正在从数据库中填充数据

<div th:each="comm : ${listBothComm}">
     <label class="list-group-item d-flex gap-2"> <input
         checked="" class="form-check-input flex-shrink-0"
         th:field="*{comm_cd}" th:value="${comm.comm_cd}" type="checkbox"><span
         th:text="${comm.comm_nm}"> </span>
      </label>
</div>

此 post 中提供了您问题的答案:

答案是简单的复选框,它将一个值传回控制器。要传递多个值,您需要相应地调整您的 thymeleaf 代码。