Rails 中删除父对象后如何删除子对象?

发布于 2024-08-20 20:41:34 字数 329 浏览 5 评论 0原文

模型 a:

has_many :b, :dependent => :delete_all

模型 b:

belongs_to :a
belongs_to :c

模型 c:

has_many :b

当我删除 a 时,我还希望删除子 b,以便将它们从任何 c's< 中删除/code> 可能会引用它们。但是,上面的方法不起作用。我将不胜感激任何帮助。

model a:

has_many :b, :dependent => :delete_all

model b:

belongs_to :a
belongs_to :c

model c:

has_many :b

When I delete an a, I would also like to have children b's deleted so that they get removed from any c's that may reference them. However, the above isn't working. I'd appreciate any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风流物 2024-08-27 20:41:34

像这样:

class Widgets < ActiveRecord::Base
  has_many :whatevers, :dependent => :destroy
end

更新

您最近的评论表明您正在使用delete()方法来删除您的对象。这不会使用回调。请阅读手册了解具体信息。

Like so:

class Widgets < ActiveRecord::Base
  has_many :whatevers, :dependent => :destroy
end

Update

Your recent comment indicates you are using the delete() method to delete your objects. This will not use the callbacks. Please read the manual for specifics.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文