after_filter用于例外

时间:2010-09-02 03:07:26

标签: ruby-on-rails exception filter actioncontroller

如果动作引发异常,是否还有类似于after_filter的东西?

我正在使用外部记录器(因为我在Heroku上);响应头被过滤并记录在after_filter中。如果引发异常,则过滤器不会运行,并且我没有响应头数据的日志。

如果我尝试挂钩到log_error或rescue_action_in_public,响应头将不会完成(因为在这些之后调用实际的渲染)。

我是否可以覆盖另一个函数,它将在after_filter的等效时间内调用,但无论是否抛出异常,它总是会运行?

谢谢!

1 个答案:

答案 0 :(得分:10)

您可以使用around_filter并捕获异常。例如

# in a controller
around_filter :catch_exceptions

def catch_exceptions
  yield
rescue ActiveRecord::RecordNotFound
  permission_denied_response # gives a stock error page
end

您可以在application.rb控制器类或单个控制器的类中添加around_filter。