gpt4 book ai didi

ruby-on-rails - 自定义错误页面 - Ruby on Rails

转载 作者:数据小太阳 更新时间:2023-10-29 06:45:35 26 4
gpt4 key购买 nike

我正在尝试在我的网站中设置自定义错误页面。我遵循 PerfectLine Blog 中的指南.

在controller存在,但id不存在的情况下有效。例如,我有一个博客 Controller ,id 4 不存在。它显示自定义错误页面

但在controller本身不存在的情况下不存在。例如,如果我键入一些带有数字 ID 的随机 Controller ,则不会被我在应用程序 Controller 中设置的方法捕获,以重新路由自定义错误页面。在这种情况下,我得到一个

ActionController::RoutingError(没有路由匹配“/randomcontrollername”):

在终端和rails自带的默认错误页面。

application_controller.rb

class ApplicationController < ActionController::Base
protect_from_forgery

unless Rails.application.config.consider_all_requests_local
rescue_from Exception, :with => :render_error
rescue_from ActiveRecord::RecordNotFound, :with => :render_not_found
rescue_from ActionController::RoutingError, :with => :render_not_found
rescue_from ActionController::UnknownController, :with => :render_not_found
rescue_from ActionController::UnknownAction, :with => :render_not_found
end

private
def render_not_found(exception)
render :template => "/error/404.html.erb", :status => 404
end

def render_error(exception)
render :template => "/error/500.html.erb", :status => 500
end

end

你能帮帮我吗?谢谢。

最佳答案

您可以使用 rails 中的路由 globbing 来做到这一点,它可以让您使用通配符将任何操作匹配到路由的任何部分。

要捕获所有剩余路由,只需在 config/routes.rb 中定义一个低优先级路由映射作为最后一条路由:

在 Rails 3 中:匹配“*路径”=> 'error#handle404'

在 Rails 2 中:map.connect "*path", :controller => 'error', :action => 'handle404'

params[:path] 将包含匹配的部分。

关于ruby-on-rails - 自定义错误页面 - Ruby on Rails,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4525715/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com