是否有类似于after_filter的操作,如果该操作引发异常,它仍然运行?
我正在使用外部记录器(因为我在Heroku);响应头被过滤并记录在after_filter中.如果引发异常,则过滤器不会运行,并且我没有响应头数据的日志.
如果我尝试挂钩到log_error或rescue_action_in_public,响应头将不会完成(因为实际的渲染在这些之后调用).
是否有另一个可以覆盖的函数将在等效的时间被调用到after_filter,但始终运行,无论是否抛出异常?
谢谢!
解决方法
可以使用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.