次の2つのモデルがあります。
class Customer
include Mongoid::Document
include Mongoid::Timestamps
embeds_many :locks, class_name: "Lock"
accepts_nested_attributes_for :locks, allow_destroy: true
field :name, type: String
validates :name,
presence: true
belongs_to :list
end
と
class Lock
include Mongoid::Document
include Mongoid::Timestamps
field :locked_by, type: Moped::BSON::ObjectId
embedded_in :customer, inverse_of: :locks, class_name: "Customer"
def unlock!
self.destroy
end
end
したがって、ロックを削除しようとすると、ロックは子コレクションから削除されますが、顧客のリロード後もまだそこにあります:
locks = customer.locks.where({ some conditions})
locks.each do |l|
l.unlock!
end
customer.save
where 条件は間違いなく正しいオブジェクトを返します。
誰かが私を助けて、私が間違っていたことを教えてもらえますか?
アップデート:
これもうまくいかない
customer.locks = []
customer.save
customer.reload