Rails 中删除父对象后如何删除子对象?
模型 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样:
更新
您最近的评论表明您正在使用delete()方法来删除您的对象。这不会使用回调。请阅读手册了解具体信息。
Like so:
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.