我最近将rails应用程序更新到rails 5.2和Ruby Version 2.3.3令我惊讶,浏览器中的开发错误不再显示为错误,而是显示消息
We are sorry, something went wrong
If you are the application owner please check logs
而,
config.consider_all_requests_local = true
出现在我的development.rb文件中。
并且运行RAILS_ENV=development rails s
也无济于事
我所做的所有更改都只是遵循rails指南。
存在一个没有结论的类似线程:here 提前致谢
答案 0 :(得分:0)
我也遇到了同样的问题,当我检查config / environments / development.rb时,from kivy.config import Config
Config.set('kivy','window_icon','icon.ico')
设置为false。
之后,为了调试Web控制台,我安装了config.consider_all_requests_local = true
,一切正常。另外,请确保还安装了宝石gem "better_errors"
。