我如何获得所有选中的复选框的值从百里香叶在春季启动



正在从数据库中填充数据

<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>

你的问题的答案在这篇文章中提供:https://stackoverflow.com/a/72300493/15730570

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

相关内容

  • 没有找到相关文章

最新更新