小编典典

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

jsp

这是一个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

我想将每个值都设置为发布网址,这样,如果用户单击任何一个链接,我都希望像下面的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>

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


阅读 248

收藏
2020-06-10

共1个答案

小编典典

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

而且regNo你可以为request在控制器的参数
Path parameter 在您的控制器像

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

并相应地修改控制器的配置。

2020-06-10