1
我使用下面的代碼,但我不想刪除/複製。我曾經是能夠改變父ID,但是這並不爲嵌入式文檔Mongoid/MongoDB中存在在Mongoid中,我如何將嵌入式文檔轉移到其他父級?
def move(new_parent)
if self._parent != new_parent
copy = self.dup
self.delete
new_parent.items << copy
end
end