当我通过网址/posts/13
访问我的Rails项目中不存在的帖子时,浏览器会显示详细错误:
ActiveRecord::RecordNotFound in PostsController#show
Couldn't find Post with ID=13
Rails.root: ...
...
Request
Parameters:
{"id"=>"13"}
...
有没有办法关闭这个详细的错误显示?
答案 0 :(得分:9)
试试这个:
在生产中运行服务器$ rails s -e production
删除 ActionDispatch :: DebugExceptions 中间件
config.middleware.delete(ActionDispatch::DebugExceptions)
在您的环境配置
config.consider_all_requests_local = false