未定义的方法`collection_check_boxes'

时间:2013-12-31 10:11:39

标签: ruby-on-rails

我的收藏选择工作正常

<%= f.collection_select :semester_id, Semester.all, :id, :name %>

但我也需要使用复选框,我使用了收集复选框,我收到此错误未定义的方法`collection_check_boxes'

<%= f.collection_check_boxes :subject_ids, Subject.all, :id, :name %>

1 个答案:

答案 0 :(得分:0)

我认为collection_check_boxex不是form_builder的方法,而是使用:

<%= collection_check_boxes(:your_instance_model_to_save, Subject.all, :id, :name) %>

我不确定,我希望它可以帮助你。

http://edgeapi.rubyonrails.org/classes/ActionView/Helpers/FormOptionsHelper.html#method-i-collection_check_boxes