配置变量作为方法被选取

时间:2012-12-07 21:40:12

标签: ruby-on-rails

在config / application.rb config.items_per_page = 15中设置配置变量并尝试将其输出到控制器时,在rails中,我收到错误:

undefined method `items_per_page'

这是我的app / controllers / posts_controller.rb:

@posts = Post.where(:is_deleted => 0, :is_hidden => 0).limit(Rails.configuration.items_per_page).order('created_at DESC')

1 个答案:

答案 0 :(得分:0)

根据@ ZachKemp的建议,重新启动rails服务器解决了这个问题。