Rails / ActiveRecord 中的多态模型

发布于 2024-11-14 20:05:00 字数 237 浏览 3 评论 0原文

我对 ActiveRecord 有点生疏,所以如果答案很明显,请原谅我。

我的 Rails 项目中有三个模型对象:Student、Assignment 和 Course。正如您可能想象的那样,课程有has_many作业。现在我希望能够为学生分配任意数量的课程和个人作业。

我尝试使用基于“可分配”概念的多态关联,但无法使其正常工作。

在 Rails 中建模这些关系的最自然的方法是什么?

I'm a little rusty on my ActiveRecord, so forgive me if the answer is somehow obvious.

I have three model objects in a rails project: Student, Assignment, and Course. As you might imagine, a Course has_many assignments. Now I want to be able to assign to a Student an arbitrary number of Courses and individual Assignments.

I've tried to use a polymorphic association based on the notion of 'assignable', but can't get it to work properly.

What's the most natural way to model these relationships in rails?

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

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

发布评论

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

评论(1

别闹i 2024-11-21 20:05:00

一种方法是简单地说学生 has_many 作业和 has_many 课程。课程还有 has_many 作业。当然,我不知道您想在应用程序中实现什么目标,但课程和作业似乎是完全不同的实体,所以我不确定您为什么想要多态关联。

One way to do it is to simply say that a Student has_many assignments and has_many courses. A Course also has_many assignments. Of course I don't know what you're trying to achieve in your application, but it seems that courses and assignments are completely different entities, so I'm not sure why you'd like a polymorphic association.

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