Rails has_one 删除链接

发布于 2024-10-14 22:41:11 字数 66 浏览 4 评论 0原文

通过将belongs_to对象上的FK设置为​​nil来破坏has_one和belongs_to的关联的唯一方法是吗?

Is the only way to destroy an association of a has_one and belongs_to by setting the FK to nil on the belongs_to object?

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

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

发布评论

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

评论(2

毁梦 2024-10-21 22:41:11

设置 @obj1.obj2 = nil 不起作用吗?

但这不会删除belongs_to记录。如果你想这样做,你需要做 @obj1.obj2.delete

Doesn't setting @obj1.obj2 = nil work?

But this doesn't delete the belongs_to record. If you want to do it you need to do @obj1.obj2.delete

浅忆流年 2024-10-21 22:41:11

我记得,一旦设置了级联删除,您只需删除该对象,它就会删除所有依赖项。

希望这有帮助,
干杯

Since I remenber, once you set drop in cascade, you just have to delete the object and it deletes all dependencies.

Hope this helps,
Cheers

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