如何实现嵌套的导轨形式?我无法正确设置此设置。现在我有:
<%= simple_form_for @user do |f| %>
<%= f.input :city %>
<%= f.input :address %>
<%= f.input :zipcode %>
<%= f.association :interests, :as => :check_boxes, :label => false %>
<%= f.association :holidays, :as => :check_boxes, :label => false %>
<%= f.simple_fields_for :friend_birthdays do |friend_birthday| %>
<%= f.input :name %>
<%= f.input :gender, :collection => ['male','female'] %>
<% end %>
<%= f.button :submit %>
<% end %>
f.association
适合我的兴趣和假期模型,因为它们每个只需要收集一个属性。但是,该friend_birthdays
模型与用户模型具有相同的精确关系(兴趣和假期),但需要编辑/添加多个属性。有任何想法吗?