Kaminari:对范围模型进行分页。控制器/视图责任

发布于 2024-11-04 04:07:06 字数 422 浏览 5 评论 0原文

我不确定我是否正确地命名了这个问题。 在我的项目中,我有一个带有显示操作的类别控制器

def show
    @category = Category.find params[:id]
end

,在我看来,我呈现与此类别相关的所有帖子

@category.posts.each do |post|
    link_to post.title, post

,所以现在我想使用 kaminari 添加分页。 我相信我可以将 @category.posts.each 更改为 @category.posts.page(params[:page]).each,但我也认为这应该由控制者负责。还是我错了?也许一切都好?

谢谢大家。

I'm not sure i've entitled the question correctly.
In my project I have a categories controller with show action

def show
    @category = Category.find params[:id]
end

And in my view I render all the posts associated with this category

@category.posts.each do |post|
    link_to post.title, post

So now I want to add pagination with kaminari.
I believe I could just change @category.posts.each to @category.posts.page(params[:page]).each, but I also think that this should be responsibility of the controller. Or am I wrong? Maybe it's totally fine?

Thanks everyone.

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

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

发布评论

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

评论(1

吃不饱 2024-11-11 04:07:06

您的显示方法应如下所示:

def show
  @posts = Category.find(params[:id]).posts.page(params[:page])
end

在视图中:

@posts.each do |post|

Your show method should look like this:

def show
  @posts = Category.find(params[:id]).posts.page(params[:page])
end

And in view:

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