5

我有一个嵌套表单(使用 Ryan B 的nested_form gem),使用 has_and_belongs_to_many 到 has_and_belongs_to_many 设置:

Opening has_and_belongs_to_many :contacts

Contact has_and_belongs_to_many :openings

在尝试将新联系人添加到开口时,在这种情况下,我得到:

Can't mass-assign protected attributes: new_1346666966632

为了

"opening"=>{"contacts_attributes"=>{"new_1346666966632"=>{"contacts"=>{"name"=>"Test Contact",

我已经添加了相应的“accepts_nested_attributes_for”和“attr_accessible”,并且正在控制器中构建联系人,即@opening.contacts.build 和@opening.contacts.build(params[:opening][:contact_attributes])。

我哪里错了?在这里使用 has_many through 关系会更好吗?

编辑:

看法:

<%= simple_nested_form_for @opening, :wrapper => :plain do |f| %>
  <%= f.link_to_add "Add a contact", :contacts %>
  <%= f.button :submit %>
<% end %>

它使用部分生成嵌套联系人的字段:

<%= f.fields_for :contacts, @opening.contacts.build do |contact_form| %>
  <%= contact_form.input :name, :label => false, :input_html => { :class => 'span6' } %>
  <%= contact_form.input :company, :label => false, :input_html => { :class => 'span6' } %>
  <%= contact_form.input :telephone, :label => false, :input_html => { :class => 'span6' } %>
  <%= contact_form.input :email_address, :label => false, :input_html => { :class => 'spa12' } %>
<% end %>
4

1 回答 1

2

您需要从开放模型构建/创建联系人,而不是尝试手动分配contacts_attributes。您的控制器代码需要类似于:

@opening.update_attributes(params[:opening])

查看Rails 指南了解更多关于使用嵌套属性的信息

于 2012-09-03T13:17:43.647 回答