フォームにラジオ ボタンのコレクション (?) を入力しようとしています。
# _fields.html.erb
<%= f.label :invoice_type %><br/>
<%= radio_tags_for_select(f.object.invoice_types) %>
# application_helper.rb
def radio_tags_for_select(types)
types_html = types.map do |type|
content_tag :span, :class => "radio_option" do
radio_button(:invoice_types, type, type) + type
end
end
safe_join(types_html)
end
この行では正しい構文を取得できないようですradio_button(:invoice_types, type, type) + type
。フォームは表示されますが、保存はデータベースに永続化されないためです。
誰でも助けることができますか?
ありがとう...