1

我在 rails 3.2.2 应用程序上使用 1.2.2 的高压,并且似乎无法让我的应用程序在找不到页面时触发自定义 404 - 我只是收到“路由错误,没有这样的页面:“错误页面。

路线.rb:

...

match '/signup',  to: 'users#new'

root :to => 'high_voltage/pages#show', :id => 'home'

match '/404', :to => 'errors#not_found'
match '/422', :to => 'errors#server_error'
match '/500', :to => 'errors#server_error'

match '/:id' => 'high_voltage/pages#show', :as => :static, :via => :get

我还在 application.rb 中设置了以下内容(我相信这是 Rails 3.2 启动路由错误的方式):

config.exceptions_app = self.routes

但我仍然得到默认的路由错误页面。

我也尝试在我的应用控制器中使用它:

unless config.consider_all_requests_local
        rescue_from Exception, :with => :render_500
        rescue_from ActiveRecord::RecordNotFound, :with => :render_404
        rescue_from ActionController::RoutingError, :with => :render_404
        rescue_from ActionController::UnknownController, :with => :render_404
        rescue_from ActionController::UnknownAction, :with => :render_404
    end

    protected

    def render_500 exception
      logger.error exception.inspect
      render :template => "/errors/server_error.html.haml", :status => 500, :layout => 'application'
    end

    def render_404 exception
      logger.error exception.inspect
      render :template => "/errors/not_found.html.haml", :status => 404, :layout => 'application'
    end

但它仍然不起作用。

我难住了!任何人都可以帮忙吗?

4

1 回答 1

2

通过以下修改,我可以获得使用高压的自定义 404 页面:

注意:如果您在本地进行测试,则需要运行RAILS_ENV=production rails s,因为开发模式会显示不同的 404 错误页面。

# config/application.rb
config.exceptions_app = self.routes

# config/routes.rb
get '/404', to: 'errors#not_found'

然后我们只需要ErrorsControllererrors/not_found.html.erb

于 2013-12-07T01:46:16.187 回答