使用下面的代码,如果我点击搜索,它会把我带到这些url
With FireFox > http://example.com/shop?utf8=%E2%9C%93&genre[]=1
With Safari > http://example.com/shop?utf8=✓&genre%5B%5D=1
如何删除这个"[]"one_answers"%5B%5D"?
我只想要"&genre=1"
视图代码
<%= form_tag communities_path, :method => :get, :class => 'form-search' do %>
<div class="input-append">
<%= collection_select :genre, nil, Genre.all, :id, :name %>
<button type="submit" class="btn">Search</button>
</div>
<% end %>
<%= select_tag :genre, options_for_select(Genre.all.map{ |g| [g.name, g.id] }) %>