Rails:如何防止与静态和动态页面的路由冲突?



我有以下路线:

Rails.application.routes.draw do
get '/:id', to: 'foo#bar', constraints: { id:  /d+/ }
end

/1使用 ID #1 加载我的记录。问题是我的路由与 Rails 默认静态页面(404、500 等(冲突。

如何让动态路由工作的静态错误页面?

如果可能的话,我不介意将我的静态页面移动到像/errors/404这样的路由。

编辑 1

重新打开ActionDispatch::ShowExceptions类并更改私有方法render_exception是一个非常黑客的解决方案:

config/application.rb:

require_relative 'boot'
require 'rails/all'
Bundler.require(*Rails.groups)
module MyApp
class Application < Rails::Application
config.load_defaults 5.2
config.exceptions_app = self.routes
end
end
module ActionDispatch
class ShowExceptions
private
def render_exception(request, exception)
backtrace_cleaner = request.get_header "action_dispatch.backtrace_cleaner"
wrapper = ExceptionWrapper.new(backtrace_cleaner, exception)
status  = wrapper.status_code
request.set_header "action_dispatch.exception", wrapper.exception
request.set_header "action_dispatch.original_path", request.path_info
request.path_info = "/errors/#{status}"
response = @exceptions_app.call(request.env)
response[1]["X-Cascade"] == "pass" ? pass_response(status) : response
rescue Exception => failsafe_error
$stderr.puts "Error during failsafe response: #{failsafe_error}n  #{failsafe_error.backtrace * "n  "}"
FAILSAFE_RESPONSE
end
end
end

我已将request.path_info = "/#{status}"更改为request.path_info = "/errors/#{status}".

我根本不喜欢这个解决方案。

您可以更改呈现异常的目录。您将需要更改一些配置,例如,您可以将以下内容放在Application类中的config/application.rb

config.exceptions_app = ActionDispatch::PublicExceptions.new(Rails.public_path.join('errors'))

然后将这些静态404.html500.htmlpublic移动到新创建的public/errors目录。

最新更新