新手问题 active_admin 的 paging 错误

jackalcooper · 2015年12月26日 · 最后由 jackalcooper 回复于 2015年12月27日 · 1798 次阅读

错误:Collection is not a paginated scope. Set collection.page(params[:page]).per(10) before calling :paginated_collection.

unless collection.respond_to?(:num_pages)
          raise(StandardError, "Collection is not a paginated scope. Set collection.page(params[:page]).per(10) before calling :paginated_collection.")
        end
        @contents = div(class: "paginated_collection_contents")

application_controller:

class ApplicationController < ActionController::Base
  protect_from_forgery with: :exception
  helper_method :all_categories
  helper_method :all_posts
  before_filter :site_search
  def all_categories
    @categories = Category.all
  end
  def all_posts
    @all_posts = Post.all
  end
  def site_search
      @q = Post.ransack(params[:q])
      #@posts_search = @q.result(distinct: true)
      @search_posts = @q.result(distinct: true)
  end
end

ActiveAdmin resource: post

ActiveAdmin.register Post do
  permit_params   :title, :body, :category_id, :admin_user_id
  menu :label => "Blog Posts"
  index do
  column :title
    column "Author",:admin_user
    column :category
    column :created_at
    default_actions
  end
  end
index method of posts controller:

 def index
      #@content_first = Post.find(1).title
      #@content_second = "This is 2";
      @q = Post.ransack(params[:q])
      @posts = @q.result(distinct: true)
      #@posts = Post.all
    end
 end
@posts = @q.result(distinct: true).page params[:page]

这样呢

#1 楼 @kikyous 谢谢,解决了,是我 model 没修改清楚

需要 登录 后方可回复, 如果你还没有账号请 注册新账号