1

序文: ネストされた住所フォームを持つ顧客を作成しようとしています。顧客の作成をクリックすると、このエラーが発生します。

ActiveModel::MassAssignmentSecurity::Error in Admin::CustomersController#create

Can't mass-assign protected attributes: address

顧客モデル

class Customer < ActiveRecord::Base
 attr_accessible :name, :email, :phone, :addresses_attributes
 has_many :addresses
 accepts_nested_attributes_for :addresses, :allow_destroy => true
end

アドレス モデル

  class Address < ActiveRecord::Base
    attr_accessible :street, :city, :state, :zip, :customer_id
    belongs_to :customer
    has_one :customer_id
end

顧客コントローラー

ActiveAdmin.register Customer, :sort_order => "name_asc" do
    # Menu item
  menu :label => "Customers", :parent => "Administration"

  filter :name
  filter :created_at
  filter :updated_at

  action_item :only => [:show] do
    link_to "Contacts", client_contacts_path( resource )
  end

  index do |t|
    selectable_column
    column(:name, sortable: :name) { |customer| link_to truncate(customer.name, length: 35), customer, title: customer.name }
    column "Created", :sortable => :created_at do |customer|
      customer.created_at.humanize
    end
    column "Updated", :sortable => :updated_at do |customer|
      customer.updated_at.humanize
    end
    column "" do |customer|
      restricted_default_actions_for_resource(customer) + link_to( "Contacts", client_contacts_path(customer), :class => "member_link" )
    end
  end

    form :partial => "form"

  show :title => :name do
      panel "Customer Details" do
          attributes_table_for resource do
            row :name
            row :email
            row :phone
            row :created_at do
              resource.created_at.humanize
            end
            row :updated_at do
              resource.updated_at.humanize
            end
          end
        text_node(render :partial => "admin/addresses/show", :locals => { :address => resource.address })
      end
    end
end

しばらくの間、これを機能させようとしましたが、機能しないため、すべてを試したと言うのは嘘です。

4

1 に答える 1

2

追加する必要があります

 accepts_nested_attributes_for :addresses

顧客モデルで。

ところで、なぜエラーは単数 (Address ではなく Address) なのですか?

:addresses_attributesattr_accessible 呼び出しにも追加する必要があります。

于 2013-05-01T19:41:53.003 に答える