3

我正在尝试使用 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 中使用)。我不想获取参数哈希并修改数据以使其遵循某些约定。有没有更好的方法,我错过了什么?

4

2 回答 2

0

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

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

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

这可能会解决您的问题,该错误可能是由于用户试图在没有明确说明的情况下批量分配配置文件属性而引起的。

于 2012-04-30T17:37:00.583 回答
0

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

所以而不是user_attributes[0][profile_attributes](我认为你有这样的东西)

让它拥有user_attributes[][profile_attributes]

于 2012-04-30T17:33:54.907 回答