在 config/application.rb 中设置配置变量config.items_per_page = 15
并尝试将其输出到控制器时,在 rails 中出现错误:
undefined method `items_per_page'
这是我的应用程序/控制器/posts_controller.rb:
@posts = Post.where(:is_deleted => 0, :is_hidden => 0).limit(Rails.configuration.items_per_page).order('created_at DESC')