根据这篇文章:
http://blog.plataformatec.com.br/2012/01/my-five-favorite-hidden-features-in-rails-3-2/
处理错误的最新方法如下所示:
# application.rb:
config.exceptions_app = self.routes
#routes.rb
match "/404", to: "site#not_found"
但是,他没有解决 Rails 错误应用程序还处理 500 个错误、422 个错误(以及可能是这两个页面的其他错误?)的事实。
所以我拼凑了一个看起来像这样的解决方案:
# routes.rb
rack_error_handler = ActionDispatch::PublicExceptions.new('public/')
match "/422" => rack_error_handler
match "/500" => rack_error_handler
这很好,因为它使我的 500 页保持轻量级。
还有其他我应该捕捉的错误吗?我的理解是,虽然 500 页面现在将使用两个机架应用程序,但它仍然与主要的 Rails 应用程序安全隔离。这个强吗?
谢谢!