从表行传递多个具有相同名称的请求参数
我有一个带有复选框的表,用户可以检查并删除表中的该行。我一切正常,但如果用户选中两个框,它只会检索表格上的第一个框。
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当同一个名称有多个值时,
getParameter()
确实只返回第一个值。您需要使用getParameterValues()
来获取所有这些值。另请参阅:
The
getParameter()
indeed returns only the first one when there are multiple values on the same name. You need to usegetParameterValues()
instead to get all of those values.See also: