ruby-on-rails – 如何确定rescue_from中哪个异常处理程序会在Rails中选择?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何确定rescue_from中哪个异常处理程序会在Rails中选择?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有两个rescue_from处理程序,一个404处理程序,并捕获所有处理程序. catch总是被调用ActiveRecord :: RecordNotFound异常,并且404处理程序永远不会被调用.我的期望是具有更多特异性的处理程序将被调用,但这不会发生.

application_controller.rb

# ActiveRecord 404
rescue_from ActiveRecord::RecordNotFound do |e|
  ...
end

# Catch all unhandled exceptions
rescue_from Exception do |e|
  ...
end

api docs for rescue_from说:

Handlers are inherited. They are searched from right to left,from
bottom to top,and up the hierarchy. The handler of the first class
for which exception.is_a?(klass) holds true is the one invoked,if
any.

我解释了关于陈述错误.如何获得我正在寻找的行为?

解决方法

404处理程序永远不会被调用,因为所有的catch都总是在你的例子中被调用.问题在于处理程序定义的排序.它们从底部到顶部进行评估,意味着您最后定义的处理程序将具有最高优先级,并且您的第一个定义的处理程序将具有最低优先级.如果您切换订单,那么您将获得所需的行为.
# Catch all unhandled exceptions
rescue_from Exception do |e|
  ...
end

# ActiveRecord 404
rescue_from ActiveRecord::RecordNotFound do |e|
  ...
end
原文链接:https://www.f2er.com/ruby/266409.html

猜你在找的Ruby相关文章