如果我有以下课程:
class Bar
include Mongoid::Document
embeds_many :foos, :cascade_callbacks => true
end
class Foo
include Mongoid::Document
embedded_in :bar, :inverse_of => :foos
end
是否有可能以这样一种方式实现,即每当 Foo 被保存/更新时,它的父 Bar 就会自动保存(并特别调用它自己的 'before_save' 回调)。我想这样做,而不必将 Bar 的方法暴露给 Foo。
即不这样做作为解决方案:
class Bar
include Mongoid::Document
embeds_many :foos, :cascade_callbacks => true
def update_stuff_on_bar
# Stuff
end
end
class Foo
include Mongoid::Document
embedded_in :bar, :inverse_of => :foos
before_save :update_parent
def update_parent
bar.update_stuff_on_bar # <- We're having to use internals of Bar inside Foo.
end
end