Rails之遇到错误跳转页的方法

来源:爱站网时间:2019-04-20编辑:网友分享
我们可以在生成类错误时触发跳转到统一的提示页,并向开发人员发送电子邮件来报告错误信息,从而提高测试能力和用户体验,今天爱站技术频道小编找到了解决方法,下面一起来看看吧!

我们可以在生成类错误时触发跳转到统一的提示页,并向开发人员发送电子邮件来报告错误信息,从而提高测试能力和用户体验,今天爱站技术频道小编找到了解决方法,下面一起来看看吧!

以下是核心方法;在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

Rails之遇到错误跳转页的方法就为大家介绍到这里了,跟多的相关知识尽在爱站技术频道!

上一篇:解答Ruby中Hash的一些问题

下一篇:openSUSE下的Ruby安装openssl出错的解决方法

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载