1

我在路线中有以下行:

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 作为参数广告在 ? 之后。所以,我的问题是:我将如何在areastores之间添加它?

4

1 回答 1

0

我看到了一种解决方案(也许不是最好的,但也可以接受)。可以编写自己的中间件来处理这个请求,但我认为这是错误的方式(在这种情况下)。

而是使用 JS 重定向

这可以写成一个方法(使用 JQuery 的例子):

$('#area_id option').click(function() {
  if (this.value) { // check value is not empty
    document.location.href = Routes.stores_directory_path({area_id: this.value})
  }
});

或使用 options_for_select:

options = []
areas.each do |a|
  options << [a.to_s, a.id, {:onclick => "document.location.href = Routes.stores_directory_path({area_id: #{a.id}})"}]
end
options_for_select(options)

在这里,我使用js-routes gem 来获得漂亮的 url。

希望这会有所帮助。

于 2012-05-22T05:00:53.030 回答