在 Mongoid 中,将文档推送到embeds_many
关系中会自动将文档持久保存到数据库中。通常,这很好,但是当我需要跟踪对嵌入文档的更改时会遇到问题。
假设您有两个模型:
class List
include Mongoid::Document
embeds_many :items
field :title
end
class Item
include Mongoid::Document
embedded_in :list
field :name
end
这发生在 .changes 属性上:
list = List.new(title: 'List title')
list.save #list is now persisted
item = Item.new(name: 'Item name')
item.changes #returns Hash with {'name' => [nil, 'Item name']}
list.items << item #saves item to database under the hood
item.changes #returns empty Hash, because item was autosaved with list
我可以item.previous_changes
用来检查在将项目推入列表之前所做的更改,但在我的特定情况下,这会给我带来各种麻烦以保持事情的可控性。
我想要实现的是能够初始化Item
文档,然后将其添加到list
(通过<<
或push
)而不立即持久化。
我知道 Mongoid 确实提供了在embeds_many
不持久的情况下设置关系的选项(请参阅http://mongoid.org/en/mongoid/docs/relations.html#embeds_many):
list.items.build(name: 'Another item')
问题在于 Mongoid 为您创建了 Item 实例。在我的情况下,embeds_many
关系中的文档可能是 Item 的子类(例如SpecialItem < Item
),它不适用于build
. 但是,如果有人知道解决此限制的方法,我也很乐意接受它作为答案。