8

根据这篇文章:

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 应用程序安全隔离。这个强吗?

谢谢!

4

2 回答 2

1

尝试这个

更新config/application.rb

config.exceptions_app = self.routes

和你的路线文件

match "/404", :to => "errors#not_found"
于 2013-10-01T09:01:57.093 回答
1

我在应用程序控制器中添加救援

  if Rails.env.production?
    rescue_from ActiveRecord::RecordNotFound, :with => :render_not_found
    rescue_from ActionController::RoutingError, :with => :render_not_found
    rescue_from ActionController::UnknownController, :with => :render_not_found
    rescue_from ActionController::UnknownAction, :with => :render_not_found
    rescue_from ActionView::MissingTemplate, :with => :render_not_found
  end

  def render_not_found(exception)
    logger.info("render_not_found: #{exception.inspect}")
    redirect_to root_path, :notice => 'The page was not found.'
  end

然后添加一个errors_controller来挽救路由错误,将它添加到我的路由文件的底部

  match "*path", :to => "errors#routing_error"
于 2013-04-23T08:42:07.253 回答