0

以下のコードで、検索を押すと、これらのURLに移動します

With FireFox > http://example.com/shop?utf8=%E2%9C%93&genre[]=1
With Safari  > http://example.com/shop?utf8=✓&genre%5B%5D=1

この「[]」と「%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 %>
4

1 に答える 1

1
<%= select_tag :genre, options_for_select(Genre.all.map{ |g| [g.name, g.id] }) %>
于 2013-01-03T02:00:09.043 に答える