Rails 3 和 will_paginate - 优雅的方式,如何获取total_pages

发布于 2024-11-28 12:12:01 字数 316 浏览 2 评论 0原文

我正在 Rails 3 中使用 will_paginate 插件,我试图获取一些变量的页数(total_pages)。

我认为总页数位于全局变量 @total_pages 中,或位于 @option[:total_pages]** 中,但如果我在我的视图中使用此变量,那么它不起作用。

我知道,我可以通过这个插件单独获取数据库表中项目的总页数,但不能这么优雅,如果我将该值已经通过插件存储在某个变量中......

所以我想问你 - 以任何方式存在,如何通过 will_paginate 插件获得这个值?

I am working with will_paginate plugin in Rails 3 and I am trying to get to some variable the count of pages (total_pages).

I thought the total pages is in globally variable @total_pages, or in @option[:total_pages]**, but if I will use this variables in my view, so it don't work.

I know, I can get the total pages of my items in DB table separately by this plugin, but couldn't be so elegant, if I will have that value already stored in some variable by plugin...

So I would like to ask you - exist any way, how to get this value throw will_paginate plugin?

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

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

发布评论

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

评论(1

平安喜乐 2024-12-05 12:12:01

如果您有一个帖子模型,

 <%= @posts.total_pages %>

将为您提供总页数,即您需要引用您在

http://rdoc.info/github/mislav/will_paginate/master/WillPaginate/Collection

if you have a posts model,

 <%= @posts.total_pages %>

will give you the pages total, i.e you need to reference the model you're calling will_paginate on

http://rdoc.info/github/mislav/will_paginate/master/WillPaginate/Collection

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