我正在使用friendly_id,以便我可以创建这样的URL:
/search/france/weekly/toyota-95
我的路线:
scope to: 'search#show' do
get '/search/:car_country_id/:rental_type_id/:car_group_id', as: 'search_country'
end
在search#show
视图中,我有一个表单:
<%= form_tag search_country_path, :method => :get do %>
<%= select_tag(:car_country_id, options_from_collection_for_select(CarCountry.all, :slug, proc {|c| c.name }, {:selected => @country}), class: "Select-control u-sizeFull") %>
<%= submit_tag t('shared.search'), class: 'btn btn-primary' %>
<% end %>
搜索控制器:
@country = CarCountry.friendly.find(params[:car_country_id])
好的,我打算将URL更改为:
/search/italy/weekly/toyota-95
但事实是,当我从select标签中选择国家并提交时,Rails params始终将 france 发送为car_country_id
。
那我该怎么办?
答案 0 :(得分:0)
目前,有两个car_country_id
被发送到Rails服务器。您可以重命名其中一个:
<%= select_tag(:new_car_country_id, options_from_collection_for_select(CarCountry.all, :slug, proc {|c| c.name }, {:selected => @country}), class: "Select-control u-sizeFull") %>
在您的控制器中,您应该检查new_car_country_id
是否存在。如果是,则重定向到相应的路径。
另一种方法是确保两个car_country_id
相同。使用JavaScript更新select_tag
后,您应该更改表单的提交路径。