inherit_resources 添加分页功能 Posted on 2015-03-10 Edited on 2026-04-01 inherited_resources 可以为controller 自动添加 action.kaminari是常用的分页插件.inherited_resources 默认的 index action 是没有分页功能的, 这是个灾难, 添加以下代码为 index 实现分页. 123class Car < ActiveRecord::Base scope :recent, -> {order(created_at: :desc)}end 123456789101112class CarsController < ApplicationController inherit_resources protected def collection end_of_association_chain.recent.page(params[:page]) endend 资料Kaminari work with Inherited Resources