Rails 3:依赖 => :否认或类似?

发布于 2024-11-07 06:44:33 字数 143 浏览 1 评论 0原文

我有一个模型“位置”,其中有许多“课程”

如果我销毁一个位置,我希望拒绝销毁请求,除非该位置与任何课程之间没有关系。我认为有一些非常简洁的方法可以做到这一点,但我找不到任何东西。

Soo...启用此类功能的最优雅/简单/简洁的方式是什么?

I have a model "location", which has many "courses"

If I destroy a location, I'd like the destroy request to be rejected unless there are no relationships between the location and any courses. I assume there's some pretty concise way of doing this, but I can't find anything.

Soo...what's the most elegant/simple/concise way of enabling this sort of functionality?

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

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

发布评论

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

评论(1

四叶草在未来唯美盛开 2024-11-14 06:44:33

在位置...

before_destroy do |l|
  return false unless l.courses.nil?
end 

in Location...

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