我在路线中有以下行:
match 'area/:area_id/stores', :to => "stores_directory#index", :as => "stores_directory"
我有一个表格,我可以在其中选择 area_id:
<%= form_tag stores_directory_path, :method=>:get do %>
<select id="area_id" name="area_id">
....
</select>
这会将 area_id 作为参数广告在 ? 之后。所以,我的问题是:我将如何在area和stores之间添加它?