通常你会使用类似的东西attr_accessible :name, :email
来允许对这些特定字段进行批量分配,但是你如何在 mongoid 中为嵌入式文档执行此操作:nick_names
?我尝试在末尾标记它,attr_accesible
但它不起作用。
谢谢!
通常你会使用类似的东西attr_accessible :name, :email
来允许对这些特定字段进行批量分配,但是你如何在 mongoid 中为嵌入式文档执行此操作:nick_names
?我尝试在末尾标记它,attr_accesible
但它不起作用。
谢谢!
我会使用标准组合并全部更新。例如:
Foo.where(country: nil).update_all(country: "USA")
http://mongoid.org/docs/querying/modification.html
如果您尝试通过 Rails 更新来做到这一点,那么 @apneadiving 是正确的,因为您需要accept_nested_attributes_for
在父模型中启用。