gpt4 book ai didi

ruby-on-rails - Rails 4 will_paginate articles/post by tags

转载 作者:行者123 更新时间:2023-12-03 12:19:15 25 4
gpt4 key购买 nike

尝试对我的标签显示页面上的文章列表(在我的案例中是想法)进行分页。所以我列出了所有标有“loremipsum”的想法。问题是 :per_page => 3 好像没有生效。所有的想法都出现了(我有 4 个标签“loremipsum”)但我们的错误。分页链接也显示在页面底部(但 page2 不起作用)。

标签 Controller :

  def show
@tag = Tag.find_by_name(params[:id])
@ideas = @tag.ideas.all.paginate(:per_page => 3, :page => params[:page])
end

在 show.html.erb 中

  <% @tag.ideas.each do |idea| %>....<% end %>
<%= will_paginate @ideas %>

在我的想法列表页面分页工作得很好,所以没有线索。非常感谢任何帮助。提前致谢!

最佳答案

我建议您在 View 中使用 @ideas.each 而不是 @tag.ideas.each

<% @ideas.each do |idea| %> ... <% end %>
<%= will_paginate @ideas %>

也就是说,我认为您遇到的问题是因为您没有迭代应用分页的同一个集合。虽然 @ideas 会分页,但 @tag.ideas 不会。

关于ruby-on-rails - Rails 4 will_paginate articles/post by tags,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28476010/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com