简体   繁体   中英

Ruby on Rails using active_admin and ransack, paging error on a active_admin:resource

The error: 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

Figured it out. I didn't alter models utterly. For those who have similar problems: 1. Try to rename your variables 2. Check your models

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM