gpt4 book ai didi

java - 如何提交具有多个不同迭代值的 html 表单帖子?

转载 作者:行者123 更新时间:2023-12-01 12:26:29 27 4
gpt4 key购买 nike

这是一个 Spring MVC 项目。

所以下面的 JSP

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<table>
<c:forEach items="${nameList}" var="studentList">
<tr>
<td><c:out value="${studentList.name}"/> ${studentList.regNo}</td>
</tr>
</c:forEach>
</table>

返回类似的值

Ramu
Somu
Mamu
Komu

我想将每个值设置为一个 post url,这样,如果用户单击任何一个链接,我想像下面的 jsp 代码一样提交

<form method="post" action="number" id="number">
<div style="text-align: center;" >
<input width="20" type="text" data-validation="numbers" id="regNo" name="regNo" size="30" maxLength="50" placeholder="Enter Register Number">
</div>
</form>

我不想做 GET。 我怎样才能做到这一点?请帮助我。

最佳答案

使用这个
<td><a href='www.xyz.com:port/number?regNo=${studentList.regNo}><c:out value="${studentList.name}"/> </a></td>

regNo你可以得到request Controller 中的参数
或者<强> Path parameter 在你的 Controller 中,例如

<td><a href='www.xyz.com:port/number/${studentList.regNo}><c:out value="${studentList.name}"/> </a></td>  

并相应地修改 Controller 的配置。

关于java - 如何提交具有多个不同迭代值的 html 表单帖子?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26291881/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com