レールの選択ボックスにhtmlクラス名を追加する方法
次の方法を試しましたが、構文エラーが発生しました
<%= f.collection_select :product, @product, :id, :name, selected: @post.product.id, html_options={class: 'tst'} %>
<%= f.collection_select :product, @product, :id, :name, selected: @post.product.id,{class: 'tst'} %>
<%= f.collection_select :product, @product, :id, :name, selected: @post.product.id, html_options: {class: 'tst'} %>
上記の3つの方法をすべて試しましたが、htmlクラスを追加する方法を修正できません。