我想用Spring和jqGrid进行分页。 我发送一个文件到spring有n行,然后它必须处理并除以5行,例如。
@RequestMapping(value = "/load", method = RequestMethod.POST)
public @ResponseBody ResponseEntity<List<filecontent>>
Control(@RequestParam("files") List<MultipartFile> file)
我已经使用PagedListHolder
在jqgrid上给出响应,但我不知道如何请求其他行,如果我调用相同的方法,这需要param'文件',但我已经发送了该文件。
如果我将所有数据发送到jqGrid,这是非常慢的详细说明,我需要在时间上只占用该文件的一部分。
那么我如何从jqgrid请求其他部分?
感谢。
问候。
答案 0 :(得分:1)
您的jqGrid应该将您需要的所有信息传递给控制器,以便您撤回正确的数据页面。
sidx = data to sort on
sord = the sort order
page = which page the grid is on
rows = how many rows are being shown in the grid
这应该允许您针对适当的数据页面查询数据源,并仅将该片段传递给jqGrid进行显示。