Spring MVC Table选中了行

时间:2010-05-05 12:08:01

标签: model-view-controller spring forms controller

在Spring MVC 2.5应用程序中,我正在使用spring <form:form>组件,并以此形式呈现带有c:forEach的表。

在每一行中放置一个提交按钮。如果我通过点击我想要知道的按钮开始提交,哪个按钮处理了提交。

<form:form commandName="formObject">
<table class="data-table" cellpadding="1" cellspacing="1" border="0">
  <thead>
   <tr>
   </tr>
  </thead>
  <c:forEach items="${list}" var="document" varStatus="row">
    <tr>
      <td>  
        <input type="submit"  value="${document.title}"/>
      <td>
    </tr>
  </c:forEach>
</table>
</form:form>

THX。

1 个答案:

答案 0 :(得分:2)

为提交按钮指定名称。您可以像处理任何其他参数一样处理该按钮的请求参数。有些浏览器可能会以不同的方式处理它们提供的值。

<input name="submittype" type="submit" value="${document.title}" />