使用Spring + Thymeleaf从表中的选中复选框中获取Ids,可以通过以下步骤实现:
<form th:action="@{/submit}" method="post">
<table>
<tr th:each="item : ${items}">
<td><input type="checkbox" th:id="${'checkbox-' + item.id}" th:name="selectedIds" th:value="${item.id}" /></td>
<td th:text="${item.name}"></td>
</tr>
</table>
<button type="submit">Submit</button>
</form>
@PostMapping("/submit")
public String submitForm(@RequestParam("selectedIds") List<Long> selectedIds) {
// 处理选中的id列表
// ...
return "success";
}
总结: 使用Spring + Thymeleaf从表中的选中复选框中获取Ids,可以通过前端页面生成复选框列表,并在后端的Spring控制器中接收并处理选中的id列表。这样可以方便地获取用户选择的复选框的id值,并进行相应的业务操作。
推荐的腾讯云相关产品:腾讯云服务器(CVM)、腾讯云数据库(TencentDB)、腾讯云对象存储(COS)、腾讯云容器服务(TKE)、腾讯云人工智能(AI Lab)等。具体产品介绍和链接地址可参考腾讯云官方网站:https://cloud.tencent.com/
领取专属 10元无门槛券
手把手带您无忧上云