Rails 3.2 Create Parent Model from Child View

后端 未结 2 1741
攒了一身酷
攒了一身酷 2021-01-21 20:25

I\'m having a difficult time understanding how to do this. I have two models, a project, and a course.

#project.rb
belongs_to :course
attr_accessible :course_id,         


        
相关标签:
2条回答
  • 2021-01-21 21:02

    I used gem 'dynamic_form'. faculty_list(id, faculty_name) table contains names of faculties.

    <%= f.select :faculty, options_from_collection_for_select(@faculty_list, 'id', 'faculty_name', @faculty.faculty.to_i) %>
    
    0 讨论(0)
  • 2021-01-21 21:19

    You should be using the form builder to build out your object, rather than just fields_for by itself.

    You have this:

    = fields_for :course do |builder|
    

    Where you should have this:

    = f.fields_for :course do |builder|
    

    The difference is that by calling it on the initial form builder, Rails will check to see if there is a course_attributes= method on the object from the initial form_for call (in this case, that'd be @project) and if there is then it'll define the fields inside this form as being course_attributes.

    Go ahead and inspect the form before and after this change, just to see. I'll wait.

    This is made possible by the accepts_nested_attributes_for call in your model. It's this method that defines the course_attributes= method that allows for the nested attributes to work. Once you create the project, it should then also create the course.

    Also, no need to make course_id an accessible attribute, as your form's not going to be setting that.

    0 讨论(0)
提交回复
热议问题