我正在使用Java EE。
这是我的JSP:
<form method="POST" enctype="multipart/form-data"action="<c:url value="submitSelected"/>">
<div class="box-body">
<table id="example" class="table table-bordered table-striped">
<thead>
<tr>
<th>id</th>
<th>name</th>
<th><input type="checkbox" id="checkall" /></th>
</tr>
</thead>
<tbody>
<c:forEach var="category" items="${categoryList}">
<tr>
<td><c:out value="${category.id}"/></td>
<td><c:out value="${category.name}"/></td>
<td><input type="checkbox" name="selectedCategory" value="${category.id}" /></td>
</tr>
</c:forEach>
</table>
</div>
<div class="box-footer" id="hidden-div">
<button type="submit" id="select" >submit</button>
</div></form>
这是我的JS:
<script type="text/javascript">
$(document).ready(function () {
$("#example").dataTable({
"scrollX": true
});
$("#example #checkall").click(function () {
if ($("#example #checkall").is(':checked')) {
$("#example input[type=checkbox]").each(function () {
$(this).prop("checked", true);
});
} else {
$("#example input[type=checkbox]").each(function () {
$(this).prop("checked", false);
});
}
});
});</script>
我使用以下命令获取我的servlet中的复选框值:
String checkboxValues[] = request.getParameterValues("selectedCategory");
我在JSP中使用datatable。我的问题是如果我的JSP显示超过1页并从这些页面中选择了一些行,我的servlet只从显示的页面获取值。如何从servlet中获取所有选定的值?如果我使用checkall复选框,我如何从servlet获取所有值?
答案 0 :(得分:0)
JSP是一种非常简单的技术。在JSP中完成的任何服务器端分页通常由程序员管理。 JSP并不能帮助你进行分页。
通常程序员会详细编写业务流程以进行分页工作(例如传递currentPage
,totalPages
,rowsPerPage
等参数,然后过滤将在页面上显示的几行。他们还为上一页和下一页链接提供了页码和超链接的超链接。
从您共享的代码段中,看起来显示categoryList
中的所有行。如果categoryList
有1000行,则所有1000行将显示在同一页面中。
要使分页工作,应该有一些servlet或struts Action
来管理categoryList
。只有少数与当前页码相关的行应加载到该数组列表中。
考虑到所有这一切,你可以理解甚至像“全部检查”这样的东西。必须由开发人员使用相当多的编码进行管理。
每当用户单击导航离开页面时,您可能必须将与所选复选框对应的类别ID附加到下一页的URL,然后在服务器上维护所选类别ID的数组列表。如果用户执行新搜索等,您还必须清除此列表。