如何将html类名添加到rails中的选择框
我尝试了以下方法,但出现语法错误
<%= 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'} %>
尝试了上述所有三种方法,但我无法修复它如何在其中添加一个 html 类。