rails清除模型的所有关系依赖关系?

时间:2017-12-19 16:29:51

标签: ruby-on-rails ruby-on-rails-5 relationship

我有一个类似的模型:

class User < ActiveRecord::Base
   has_many :notifications, dependent: :delete_all
   has_many :foo, dependent: :delete_all
   has_many :bar, dependent: :delete_all
end

如何启动dependent: :delete_all,就像我呼叫my_user.destroy但不破坏或删除我的用户一样?

如果我只想重置所有链接而不丢失我的用户?

我需要通用流程,而不是手动:

my_user.notifications.delete_all
my_user.foo.delete_all
my_user.bar.delete_all

为什么呢?因为如果以后,我的应用程序发展了一个新的&#34; baz&#34; has_many关系,这意味着我应该考虑添加my_user.baz.delete_all,我不会......

1 个答案:

答案 0 :(得分:2)

您可以将其添加到您的用户模型中:

def destroy_has_many_associations
  has_many_associations = self.reflect_on_all_associations(:has_many)

  has_many_associations.each do |association|
    send(association.name).destroy_all
  end
end

当您需要重置用户时,可以拨打user.destroy_has_many_associations

您可以通过进行一些更改来使此方法更通用。这将允许您销毁所有关联或特定的关联,如has_many或belongs_to:

def destroy_associations(type: nil)
  reflections = self.reflect_on_all_associations(type)

  reflections.each do |reflection|
    association = send(reflection.name)
    reflection.macro == :has_many ? association.destroy_all : association.destroy
  end
end

如果您致电user.destroy_associations,将删除所有关联。如果您致电user.destroy_associations(type: :has_many),则只会销毁has_many关联。