404状态:缺少布局

时间:2014-05-21 08:13:13

标签: ruby-on-rails ruby-on-rails-3

当找不到记录时,我渲染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

2 个答案:

答案 0 :(得分:1)

你确定你的自定义rescue_from正在执行吗?我不这么认为。 可能会抛出另一个异常,而不是ActiveRecord::RecordNotFound

事情是,public/404.html默认情况下由rails呈现404错误,没有布局。 如果要调整此行为,请删除public/*个文件并将它们放在app/views文件夹下,这样您就可以完全控制并且rails默认行为不会让您感到困惑。

答案 1 :(得分:1)

我们有更好的方法来捕获异常:

  

(这是where we got it from


<强>捕获

一种更有效的捕获异常的方法是使用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>