如何实现在Grails分页中添加额外参数?
我有一个页面/gsp,显示 3 个不同的类别。
这意味着我需要向分页链接添加额外的参数。
目前,grails 中默认分页标签自动生成的链接会生成如下链接:
http://localhost:8080/Teams/Leader/assignFollower?偏移=400&最大=100
我希望它与此类似:
http://localhost: 8080/Teams/Leader/assignFollower?LeaderId=1&TeamId=2&offset=400&max=100
有什么想法可以实现吗?
I have a page/gsp that displays 3 different classes.
This means that I need to add extra parameters to the pagination links.
currently the link auto generated by default pagination tag in grails produces links like this:
http://localhost:8080/Teams/Leader/assignFollower?offset=400&max=100
I'd like it to be something similar to this:
http://localhost:8080/Teams/Leader/assignFollower?LeaderId=1&TeamId=2&offset=400&max=100
Any ideas how I can implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
paginate 标签接受 params 参数。所以类似这样的事情:
应该可以解决问题。
有关更多信息,请参阅文档: http://www.grails.org/GSP+Tag+-+paginate干杯
!
The paginate tag accepts a params parameter. So something like:
should do the trick.
See the docs for more: http://www.grails.org/GSP+Tag+-+paginate
Cheers!