4

当我通过 URL 访问 Rails 项目中不存在的帖子时,/posts/13浏览器显示详细错误:

ActiveRecord::RecordNotFound in PostsController#show

Couldn't find Post with ID=13
Rails.root: ...
...
Request

Parameters:

{"id"=>"13"}
...

有没有办法关闭这个详细的错误显示?

4

1 回答 1

10

尝试这个:

  • 在生产中运行服务器$ rails s -e production

  • 移除ActionDispatch::DebugExceptions中间件

    config.middleware.delete(ActionDispatch::DebugExceptions)

  • config.consider_all_requests_local = false在您的环境配置中设置

于 2012-10-11T22:38:37.427 回答