Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ラジオボタンに範囲1..5を追加するにはどうすればよいですか。どんな助けでも大歓迎です。
<%= f.radio_button :rating ,:class => "form-control" %>
これでうまくいくはずです。
<%= f.collection_radio_buttons :rating, (1..5).map{|n| [n, n]}, :first, :last, :class => "form-control"" %>