3

我目前正在尝试在 belongs_to 关系上设置一个包含嵌套字段的表单,但我遇到了批量分配错误。到目前为止,我的代码如下(删除了一些 html):

销售型号:

class Sale < ActiveRecord::Base
  attr_accessible :customer_attributes
  belongs_to :customer
  accepts_nested_attributes_for :customer
end

新的.html.erb:

<div class="container">
  <%= form_for :sale, :url => sales_path do |sale| -%>
    <%= sale.fields_for :customer do |customer_builder| %>
      <%= render :partial => "customers/form", :locals => {:customer => customer_builder, :form_actions_visible => false} %>
    <% end -%>
  <% end -%>

客户/_form.html.erb

<fieldset>
  <label class="control-label">Customer Type</label>
  <%= collection_select(:customer, :customer_type_id, CustomerType.all, :id, :value, {}, {:class => "chzn-select"}) %>
</fieldset>

我相信这应该允许我创建一个 Sale 对象和一个嵌套的 Customer 对象。发送的参数是(注意一些不相关的参数包括在内):

{"utf8"=>"✓",
"authenticity_token"=>"qCjHoU9lO8VS060dXFHak+OMoE/GkTMZckO0c5SZLUU=",
"customer"=>{"customer_type_id"=>"1"},
"sale"=>{"customer"=>{"features_attributes"=>{"feature_type_id"=>"1",
"value"=>"jimmy"}}},
"vehicle"=>{"trim_id"=>"1",
"model_year_id"=>"1"}}

我得到的错误是:

Can't mass-assign protected attributes: customer

我明白为什么会出现这种情况,因为 :customer 不在销售的 attr_accessible 列表中——尽管表单不应该发送 customer_attributes 而不是 customer?

任何帮助/建议表示赞赏。

编辑 1:据我所知,销售模型中的 attr_accessible 应该包含 :customer_attributes - 如果有人说不同,请告诉我。

编辑 2:我尝试了各种排列,但我似乎无法获得参数来发送 customer_attributes 而不是简单的客户 - 也许我错过了一个标签或在上面的表格中某处使用了不正确的标签?

编辑 3:我在 SO 上发现了另一个问题,表明:url =>form_for 标记上的部分存在问题 - 该问题指的是 formtastic 设置,但我想知道这是否是导致问题的原因?

4

2 回答 2

4

这可能是问题......来自API docs:

与 attr_accessible 一起使用

如果您不小心,使用 attr_accessible 可能会干扰嵌套属性。例如,如果上面的 Member 模型像这样使用 attr_accessible:

attr_accessible :name

您需要将其修改为如下所示:

attr_accessible :name, :posts_attributes

http://api.rubyonrails.org/classes/ActiveRecord/NestedAttributes/ClassMethods.html#label-Using+with+attr_accessible

于 2012-08-21T22:44:18.697 回答
1

我最终在这里得到了答案。关键是这一行:

<%= collection_select(:customer, :customer_type_id, CustomerType.all, :id, :value, {}, {:class => "chzn-select"}) %>

需要更改为:

<%= customer.collection_select(:customer_type_id, CustomerType.all, :id, :value, {}, {:class => "chzn-select"}) %>

一旦改变了这一点,一切就都到位了。

于 2012-08-22T09:42:12.227 回答