根据条件销毁对象的所有依赖项的最佳/干燥方法是什么。吗
例如:
class Worker < ActiveRecord::Base
has_many :jobs , :dependent => :destroy
has_many :coworkers , :dependent => :destroy
has_many :company_credit_cards, :dependent => :destroy
end
条件将是 on Destroy:
if self.is_fired?
#Destroy dependants records
else
# Do not Destroy records
end
有没有办法在依赖条件下使用Proc。 我已经找到了单独销毁家属的方法,但这对于进一步的关联而言并非干燥和灵活,
注意:我已经编写了示例..而不是实际的逻辑
答案 0 :(得分:34)
没有。您应该删除:dependent => :destroy
并添加after_destroy
回调,您可以在其中编写任何所需的逻辑。
class Worker < ActiveRecord::Base
has_many :jobs
has_many :coworkers
has_many :company_credit_cards
after_destroy :cleanup
private
def cleanup
if self.is_fired?
self.jobs.destroy_all
self.coworkers.destroy_all
self.company_credit_cards.destroy_all
end
end
end