jsp中如何对从数据库获取的数据添加分页
我有一个 jsp 页面,它在 jsp 中以表格格式显示大量数据。我想添加分页,以便默认情况下页面中仅显示 20 个条目,然后单击“下一步”获取其他详细信息。请向我发送最佳链接用于分页
I have jsp page which diplays a huge data in table format in the jsp ..I want to add pagination so that by default only 20 entries are displayed in the page and click next to get other details..Please do send me the best links for pagination
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用一些参数来维护当前的数据槽,例如 pageNo=1 ,应该获取 1-20,pageNo=2 应该获取 20-40。并仅在需要时获取数据。
有很多这样的视图可用。其中之一是 displayTag。
还有 pageSorter jQuery 插件
You can use some param to maintain current slot of data for example pageNo=1 , Should fetch 1-20, pageNo=2 should fetch 20-40. and fetch only data when required.
There are many such view available. one of this is displayTag.
Also there is pageSorter jQuery plugin