gpt4 book ai didi

ruby-on-rails - Rails Kaminari - 如何对数组进行排序/分页?

转载 作者:行者123 更新时间:2023-12-04 05:50:50 25 4
gpt4 key购买 nike

我正在关注 Kaminari (http://railscasts.com/episodes/254-pagination-with-kaminari) 的 railscast。但我被 Controller 部分困住了。

在我的 Controller 中,我有这样的东西:

def index
@articles = (params[:mine] == "true") ? current_user.articles : Article.search(params[:search])

respond_to do |format|
format.html
format.json { render json: @articles }
end
end

现在我不确定如何链接方法、顺序、页面和每个,就像在截屏视频中一样 .order("name").page(params[:page]).per(5) .我一直在 Array 中获得 no method 'order'。我知道我不能调用数组上的方法,但我还能如何链接它们?

最佳答案

您可以在数组上使用 Kaminari:

Kaminari.paginate_array(@articles).page(params[:page]).per(5)

来自 documentation :

Kaminari provides an Array wrapper class that adapts a generic Array object to the paginate view helper. However, the paginate helper doesn’t automatically handle your Array object (this is intentional and by design). Kaminari::paginate_array method converts your Array object into a paginatable Array that accepts page method.

关于ruby-on-rails - Rails Kaminari - 如何对数组进行排序/分页?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11818118/

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