refer to: https://github.com/flyerhzm/bullet
1. gem "bullet", :group => "development"
2. $ bundle install
3. 编辑 config/environments/development.rb
加上: 配置: (具体位置, 放到与其他config 位置相同的地方) config.after_initialize do Bullet.enable = true Bullet.alert = true Bullet.bullet_logger = true Bullet.console = true Bullet.rails_logger = true Bullet.add_footer = true end
使用时, 对于erb 页面,会自动提示消息。 对于json 等接口,直接查看 log/bullet.log 就可以。 能给出解决方案。特别好用。