接受mongoid的嵌套属性约定

时间:2012-04-30 17:16:20

标签: ruby-on-rails mongodb mongoid

我正在尝试使用mongoid创建一个具有嵌套属性的表单。我的模型有以下代码:

def Company
  field :name

  has_many :users, autosave: true, dependent: :destroy
  accepts_nested_attributes_for :users
end

def User
  belongs_to :company
  has_one :profile
end

def Profile
  belongs_to :user
end

从表单返回的参数按以下顺序排列:

"company"=>
  {"users_attributes"=>
    {"0"=>
      {"profile_attributes"=>
        {"first_name"=>"123123abcd123", "last_name"=>"abcd123123123"},
       "email"=>"abcd@abcd.com123123123",
       "password"=>"123123123123",
       "password_confirmation"=>"123123123123"}},
   "name"=>"abcd123123123",
   "subdomain"=>"abcd123123123"}

调用Company.create(params [:company])似乎有效,但是它没有正确创建用户对象。当我做company.users时,我可以看到该对象,但是当我执行User.find时,该文档不可用。阅读文档我意识到params应该通过以下方式传递:

"company"=>
  {"users_attributes"=>
    [{"profile_attributes"=>
       {"first_name"=>"123123123", "last_name"=>"123123123"},
      "email"=>"testin321@gmail.com",
      "password"=>"123123",
      "password_confirmation"=>"123123"}],
   "name"=>"abcd123123123",
   "subdomain"=>"abcd123123123"}

注意使用数组for users_attributes而不是hash的细微差别。这样做是正确的,但它似乎没有像Active Record那样开箱即用(以及它应该如何在rails中)。我不想采用params哈希并修改数据以使其遵循某些约定。有没有更好的方法,我错过了什么?

2 个答案:

答案 0 :(得分:0)

如果你可以命名将构成数组的inputs as user_attributes[]

所以没有user_attributes[0][profile_attributes](我觉得你有类似的东西)

让它拥有user_attributes[][profile_attributes]

答案 1 :(得分:0)

您可以发布表单的代码吗?然后我们可以努力了解它以某种方式格式化的原因。 (这应该是一个评论,但是一旦有关于这个问题的更多细节,我将提供答案。)

在您查看视图中的表单问题的旁注中。我注意到你正在尝试创建一个公司,它是嵌套用户和用户,它也是嵌套的配置文件属性。如果您希望用户接受配置文件的嵌套属性,则需要将其放在用户模型中。

def User
  belongs_to :company
  has_one :profile, dependent: destroy, autosave: true
  accepts_nested_attributes_for :profile
end

这可能会解决您的问题,错误可能来自用户尝试批量分配配置文件属性而没有明确说明。