我正在使用位于https://github.com/twitter/activerecord-reputation-system的 activerecord-reputation-system gem 。在我的应用程序中,我有一些帖子,我想使用
ActiveRecord::Base.find_with_reputation(:reputation_name, :scope, :find_options)
宝石的方法。我也有足够多的帖子需要它们进行分页和搜索。但是,每当我调用通常在我的帖子集上工作的页面或搜索方法时,我都会得到一个方法不存在错误。我通常的收款电话看起来像这样
Post.all.text_search(params[:query]).order("created_at desc").page(params[:page]).per(20)
我正在使用 Kaminari 进行分页。有谁知道如何将 find_with_reputation 方法与其他查询参数结合起来?