我正在尝试使用 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 时,该文档不可用。阅读文档后,我意识到应该通过以下方式传递参数:
"company"=>
{"users_attributes"=>
[{"profile_attributes"=>
{"first_name"=>"123123123", "last_name"=>"123123123"},
"email"=>"testin321@gmail.com",
"password"=>"123123",
"password_confirmation"=>"123123"}],
"name"=>"abcd123123123",
"subdomain"=>"abcd123123123"}
请注意将数组用于 users_attributes 而不是散列的细微差别。这很好用,但它似乎不像 Active Record 那样开箱即用(以及它应该如何在 Rails 中使用)。我不想获取参数哈希并修改数据以使其遵循某些约定。有没有更好的方法,我错过了什么?