从表行传递多个具有相同名称的请求参数

发布于 2024-11-06 05:50:37 字数 488 浏览 0 评论 0原文

我有一个带有复选框的表,用户可以检查并删除表中的该行。我一切正常,但如果用户选中两个框,它只会检索表格上的第一个框。

<tr>
  <td><input type="checkbox" name="id" value="${user.id}" /></td>
  <td><c:out value="${user.name}" /></td>
  <td><c:out value="${user.email}" /></td>
</tr>

这只是我的 HTML 的一个示例。这是我的 servlet 的一部分。

String id = request.getParameter("id");

因此,我可以再次选择第一个值,但无法删除同一个表上的多行。有我可以使用的功能或类似的功能吗? 谢谢!

I have a table with checkboxes that the user can check and delete that row in the table. I have everything working, but if the user checks two boxes, it only retrieves the first one on the table.

<tr>
  <td><input type="checkbox" name="id" value="${user.id}" /></td>
  <td><c:out value="${user.name}" /></td>
  <td><c:out value="${user.email}" /></td>
</tr>

This is just an example of my HTML. Here is part of my servlet.

String id = request.getParameter("id");

So, again, I can get the first value selected, but I am not able to delete multiple rows on the same table. Is there a function I can use or anything similar?
Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡莣 2024-11-13 05:50:37

当同一个名称有多个值时,getParameter() 确实只返回第一个值。您需要使用 getParameterValues() 来获取所有这些值。

String[] ids = request.getParameterValues("id");
// ...

另请参阅:

The getParameter() indeed returns only the first one when there are multiple values on the same name. You need to use getParameterValues() instead to get all of those values.

String[] ids = request.getParameterValues("id");
// ...

See also:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文