0

在 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')
4

1 回答 1

0

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

于 2013-07-15T19:42:29.227 回答