欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

rails 根据异常显示特定的错误页面

程序员文章站 2022-07-15 20:04:14
...
rescue_from  异常, :with => :action

eg:
rescue_from Exception, :with => :error

def error
  render :file => "novel/infos/error", :layout => "novel"
end

当发生了指定的异常时,就会显示特定的页面,这个通常放到application_controller中
相关标签: Rails