当找不到记录时,我渲染404页面。问题是虽然application
工作正常但它没有403
布局
class ApplicationController < ActionController::Base
rescue_from ActiveRecord::RecordNotFound, with: :render_404
def render_404
render file: 'public/404.html', status: 404, layout: 'application'
end
def render_403
render file: 'public/403.html', status: 403, layout: 'application'
end
end
答案 0 :(得分:1)
你确定你的自定义rescue_from正在执行吗?我不这么认为。
可能会抛出另一个异常,而不是ActiveRecord::RecordNotFound
。
事情是,public/404.html
默认情况下由rails呈现404错误,没有布局。
如果要调整此行为,请删除public/*
个文件并将它们放在app/views
文件夹下,这样您就可以完全控制并且rails默认行为不会让您感到困惑。
答案 1 :(得分:1)
我们有更好的方法来捕获异常:
<强>捕获强>
一种更有效的捕获异常的方法是使用exceptions_app
方法
#config/environments/production.rb
config.exceptions_app = ->(env) { ExceptionController.action(:show).call(env) }
-
<强>过程强>
其次,您应该处理捕获的异常。您可以通过将请求发送到控制器方法(我们使用ExceptionController#show
):
#app/controllers/exception_controller.rb
class ExceptionController < ApplicationController
#Response
respond_to :html, :xml, :json
#Dependencies
before_action :status
#Layout
layout :layout_status
####################
# Action #
####################
#Show
def show
respond_with status: @status
end
####################
# Dependencies #
####################
protected
#Info
def status
@exception = env['action_dispatch.exception']
@status = ActionDispatch::ExceptionWrapper.new(env, @exception).status_code
@response = ActionDispatch::ExceptionWrapper.rescue_responses[@exception.class.name]
end
#Format
def details
@details ||= {}.tap do |h|
I18n.with_options scope: [:exception, :show, @response], exception_name: @exception.class.name, exception_message: @exception.message do |i18n|
h[:name] = i18n.t "#{@exception.class.name.underscore}.title", default: i18n.t(:title, default: @exception.class.name)
h[:message] = i18n.t "#{@exception.class.name.underscore}.description", default: i18n.t(:description, default: @exception.message)
end
end
end
helper_method :details
####################
# Layout #
####################
private
#Layout
def layout_status
@status.to_s == "404" ? "application" : "error"
end
end
-
显示强>
最后,您可以输出您收到的消息,每个错误都有自定义布局:
#app/views/exception/show.html.erb
<div class="box">
<h1><%= details[:name] %></h1>
<p><%= details[:message] %></p>
</div>