ruby4.1.8 catch class error

本文介绍了一种在Rails应用中处理各种常见错误的方法,通过在ApplicationController中定义特定的错误处理逻辑,可以实现统一的错误页面展示并自动发送错误报告邮件,有效提升用户体验。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一个迭代开发中的网站难免存在bug,出bug的时候客户体验就很不好了,为解决此问题,可以在class error产生的时候,触发跳转到统一提示页面,并给开发人员发邮件报错误信息,提高测试能力和用户体验。以下是核心方法;在ApplicationController中添加如下代码,不同rails版本的class error略有变化。

AR_ERROR_CLASSES = [ActiveRecord::RecordNotFound, ActiveRecord::StatementInvalid]
ERROR_CLASSES = [NameError, NoMethodError, RuntimeError,
ActionView::TemplateError,
ActiveRecord::StaleObjectError, ActionController::RoutingError,
ActionController::UnknownController, AbstractController::ActionNotFound,
ActionController::MethodNotAllowed, ActionController::InvalidAuthenticityToken]

ACCESS_DENIED_CLASSES = [CanCan::AccessDenied]

if Rails.env.production?
rescue_from *AR_ERROR_CLASSES, :with => :render_ar_error
rescue_from *ERROR_CLASSES, :with => :render_error
rescue_from *ACCESS_DENIED_CLASSES, :with => :render_access_denied
end

#called by last route matching unmatched routes. Raises RoutingError which will be rescued from in the same way as other exceptions.

#备注rails3.1后ActionController::RoutingError在routes.rb中最后加如下代码才能catch了。
#rails3下:match '*unmatched_route', :to => 'application#raise_not_found!'
#rails4下:get '*unmatched_route', :to => 'application#raise_not_found!'

def raise_not_found!
raise ActionController::RoutingError.new("No route matches #{params[:unmatched_route]}")
end

def render_ar_error(exception)
case exception
when *AR_ERROR_CLASSES then exception_class = exception.class.to_s
else exception_class = 'Exception'
end

send_error_email(exception, exception_class)
end

def render_error(exception)
case exception
when *ERROR_CLASSES then exception_class = exception.class.to_s
else exception_class = 'Exception'
end

send_error_email(exception, exception_class)
end

def render_access_denied(exception)
case exception
when *ACCESS_DENIED_CLASSES then exception_class = exception.class.to_s
else exception_class = "Exception"
end

send_error_email(exception, exception_class)
end
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值