Rails 4在更新嵌套属性时会创建重复项

时间:2015-07-13 01:38:20

标签: ruby-on-rails strong-parameters

我已经尝试过将ID列入白名单,它没有任何帮助,无论如何都会产生重复。

型号:

accepts_nested_attributes_for :address, :social, :contact, :talent_parameter

我传递的属性:

model_attributes = {
          talent_parameter_attributes: {
          },
          contact_attributes: {
              agency_link: base_url + href
          },
          social_attributes: {
          },
          address_attributes: {
          }
      }

      update_model(model, model_attributes)

我设置的权限:

  def self.update_model(model, attrs)
    params = ActionController::Parameters.new(model: attrs)
    model_params = params.require(:model)
    model_params = model_params.permit(
        :company,
        :age,
        :avatar,
        :gender,
        :contact_id,
        talent_features: [],
        talent_parameter_attributes: [:id, :weight_lbs, :dress, :shoe, :chest, :waist, :hips, :height_ft],
        contact_attributes: [:id, :agency_link],
        social_attributes: [:id]
    )

    model.update(model_params)
  end

我不明白。每次创建talent_parametercontactsocialaddress的另一个副本时。它可能有什么问题?

1 个答案:

答案 0 :(得分:3)

您是否为要更新的模型添加了 id ?在Rails API中,它声明“对于没有id密钥的每个哈希,将实例化新记录”...

所以试试这个:

model_attributes = {
      talent_parameter_attributes: {
      },
      contact_attributes: {
          id: 7,
          agency_link: base_url + href
      },
      social_attributes: {
      },
      address_attributes: {
      }
  }