Rails will_paginate 并按 ASC 顺序分页最新记录

发布于 2024-10-04 16:22:56 字数 107 浏览 5 评论 0原文

如何使用 will_paginate 对帖子进行分页,以便首页显示按 ASC 顺序排列的 10 条最新帖子

谢谢!

How to paginate posts with will_paginate, so that first page shows 10 latest posts in ASC order.

Thanks!

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

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

发布评论

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

评论(2

迷乱花海 2024-10-11 16:22:56

如果我理解正确的话,这段代码应该在你的控制器中完成工作。


def index
 @posts = Post.paginate :page => params[:page], :per_page => 10, :order => 'created_at ASC'
end

If I understood correctly, this code should do the job in your controller.


def index
 @posts = Post.paginate :page => params[:page], :per_page => 10, :order => 'created_at ASC'
end

妳是的陽光 2024-10-11 16:22:56

尝试将其添加到您的帖子模型的顶部:

cattr_reader :per_page
@@per_page = 10
default_scope :order => 'created_at DESC'

Try adding this to your post model right at the top:

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