我們在保存循環的radio_buttons的值時遇到了問題。它不保存在數組中。 SavedAnswer模型與MultipleChoiceAnswer模型具有has_and_belongs_to_many關係。 這是我的代碼:無法在數組中保存collection_radio_buttons Ruby on Rails
<%= form_for @saved_answer do |f| %>
<% @questions.each do |question| %>
<%= collection_radio_buttons(:saved_answer, :multiple_choice_answer_ids , question.multiple_choice_answers, :id, :title) do |c| %>
<%= c.radio_button %>
<%= c.label %>
<% end %>
<% end %>
<%= f.submit "Submit" %>
<% end %>
我的輸出爲預先
Parameters: {"utf8"=>"✓", "authenticity_token"=>"57I9yLZMccvcb3Bn5/pw7kES0c9CUAGs33yCXoS0Urm1Yek/Baz8Hl7fO8Yl/OVZWLKsX7qrwOlqEBoXrGkcxQ==", "saved_answer"=>{ "multiple_choice_answer_ids"=>"1"}, "commit"=>"Submit"}
謝謝!