分页:如何从“params[:page]”获取(从)到(到)

发布于 2024-12-18 15:22:10 字数 149 浏览 1 评论 0原文

我想添加他们的分页器以具有如下内容:

450 中的 1–30

我能够从命名范围中获取总数。我很好奇是否有办法获取另外两个而不是用 params[:page] 值来处理?

I'd like to add their paginator to have something like the following:

1–30 of 450

I'm able to get the total from a named scope. I'm curious if there is a way to get the other two rather than mucking with the params[:page] value?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

開玄 2024-12-25 15:22:10

有一个名为 page_entries_info 它提供了您需要的信息:

<%= page_entries_info @posts %>
#-> Displaying posts 6 - 10 of 26 in total

请注意,它不是很可定制,但您也许可以基于它编写自己的简单帮助器方法。查看边缘版本以获得更清晰的版本实施比文档中的实施要好。

There's a view helper named page_entries_info which provides the info you need:

<%= page_entries_info @posts %>
#-> Displaying posts 6 - 10 of 26 in total

Note that it's not very customizable, but you might be able to write your own simple helper method based on it. Check out the edge version for a somewhat cleaner implementation than the one from the docs.

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