gpt4 book ai didi

ruby-on-rails - 如何在 Rails 应用程序中对博客文章进行分页

转载 作者:太空宇宙 更新时间:2023-11-03 17:03:03 24 4
gpt4 key购买 nike

我尝试了下面的代码,但它不起作用

class BlogsController < ApplicationController
def index
#@entry_pages = Paginator.new(self, Entry.count, 10, params[:page])
@entries = Entry.find(:all,
#:limit => @entry_pages.items_per_page,
#:offset => @entry_pages.current.offset,
:order => 'entries.created_at DESC',
:include => :user)
end
end

这是博客 View

<h1>Recently updated blogs</h1>
<% @entries.each do |entry| %>
<p>
<%= link_to entry.user.username, entries_url(:user_id => entry.user) %><br />
'<%= entry.title %>' was posted <%= time_ago_in_words(entry.created_at) %> ago
</p>
<% end %>

我希望项目像这样分页:

<<  [1][2][3]  >>

最佳答案

给出 will_paginate创业板一试。它提供了对博客条目进行分页所需的所有功能。

关于ruby-on-rails - 如何在 Rails 应用程序中对博客文章进行分页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1216587/

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