我们创建了一个包含多个站点的多租户应用程序,每个站点都可以从后端修改路由。
在routes.rb中我们为所有站点加载动态路由并将它们放入像这样的主机约束
的routes.rb
Frontend::Application.routes.draw do
DynamicRoutes.load
end
应用/模型/ dynamic_routes.rb
class DynamicRoutes
# dynamically loads the routes from settings into the routes.rb file
# and adds a host constraint to just match with the current sites host
# http://codeconnoisseur.org/ramblings/creating-dynamic-routes-at-runtime-in-rails-4
def self.load
if Site.table_exists?
Frontend::Application.routes.draw do
Site.includes(:setting).each do |site|
site.routes.each do |route|
# write the route with the host constraint
constraints(:host => site.hostname) do
case route[0]
when :shop_show
match "#{route[1]}", to: 'shops#show', via: [:get], as: "shop_show_#{site.id}"
end
end
end
end
end
end
end
# allows to reload the routing
# e.g. when changes in route settings where made
#
def self.reload
Rails.application.reload_routes!
end
end
因此,我们为每个站点创建所有路由,并将它们与主机约束匹配。除非我们使用 url_for 帮助
,否则此工作正常@site = Site.find_by(hostname: request.host)
url_for controller: 'shop', action: 'show', host: @site.hostname
url_for返回第一个匹配的url,无论它应该属于哪个主机。所以即使我放了一个host:param
,也不使用主机约束您是否知道如何将url_for用于主机约束?
答案 0 :(得分:1)
我的申请中有相同的任务。 url_for 会忽略主机参数。但是我们可以通过以下方式在ApplicationController中创建其他路径助手:
<强> ApplicationController.rb 强>
%w( shop_show ).each do |helper|
helper_name = "#{helper}_path".to_sym
helper_method helper_name
define_method(helper_name) { |*args| send "#{helper}_#{site.id}_path", *args }
end
之后,您可以在视图中使用通用路径 shop_show_path 。当然,您应根据您的主机/域动态分配站点变量。