如何重定向到“操作”页面will_paginate 中的页面

发布于 2024-11-24 17:10:27 字数 134 浏览 3 评论 0原文

我有一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鹿港巷口少年归 2024-12-01 17:10:27

解决问题的两种方法:

  1. “redirect_to :back”
  2. 保存 params[:page] 并在删除项目后重定向到页面

2 ways to solve the issue:

  1. "redirect_to :back"
  2. save params[:page] and redirect to the page once item is deleted
白色秋天 2024-12-01 17:10:27

您可以在用于分页的实例变量上使用方法total_pages。

example :
@user = User.find(params[:id])
@comments = @user.comments.paginate(:page => 1, :per_page => 20)
@comments.total_pages

@comment.total_pages 将返回您最后的页码。您可以将其用于重定向。

You can use method total_pages on instance variable which you are using for pagination.

example :
@user = User.find(params[:id])
@comments = @user.comments.paginate(:page => 1, :per_page => 20)
@comments.total_pages

@comment.total_pages will return you the last page no. which you can use for your redirection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文