如何重定向到“操作”页面will_paginate 中的页面
我有一个使用 will_paginate 的消息框。 我有 6 条消息显示在 3 页中, 当我删除 page_3 中的项目时,它会重定向到 page_1,我怎么仍然在 page_3?!
I have a message box using will_paginate.
I have 6 messages showing in 3 pages,
when i delete an item in page_3, it redirect_to page_1, how can i still be in page_3?!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
解决问题的两种方法:
2 ways to solve the issue:
您可以在用于分页的实例变量上使用方法total_pages。
@comment.total_pages 将返回您最后的页码。您可以将其用于重定向。
You can use method total_pages on instance variable which you are using for pagination.
@comment.total_pages will return you the last page no. which you can use for your redirection.