我或多或少地实现了这个 railscast 来获取子域:
http://railscasts.com/episodes/221-subdomains-in-rails-3
它工作得很好,但我希望不匹配的子域重定向到根路径。
这是 routes.rb 部分:
match '/' => 'menus#show', constraints: { subdomain: /^(?!www$)(.+)$/i }
这是在菜单#show中:
# GET /menus/1
# GET /menus/1.json
def show
if !params[:id].nil?
@menu = Menu.find(params[:id])
else
if Shop.find_by_subdomain(request.subdomain).nil?
respond_to do |format|
format.html { redirect_to(root_path, :notice => I18n.t("misc.not_found")) }
return
end
else
@menu = Shop.find_by_subdomain(request.subdomain).menus.last
end
end
if !@menu.nil?
respond_to do |format|
format.html # show.html.erb
format.json { render json: @menu }
end
end
end
所以我仍然想保持不使用子域的可能性(因此检查params [:id]。然后我检查子域是否存在,如果不存在我想重定向。
目前我在尝试不存在的域时得到这个,所以我相信他仍在尝试显示菜单:
undefined method `shop' for nil:NilClass
Extracted source (around line #1):
1: <h2>Menu <%= @menu.shop.name %></h2>
2: <br>
3: <%= render :partial => 'menu_show' %>