在 ActiveRecord 中命名引用

发布于 2024-08-19 16:13:22 字数 118 浏览 2 评论 0原文

在我的 Rails 应用程序中,我有一个组织模型,其中引用了一个用户,我希望能够通过organization_instance.adminstrator 访问该模型。我不确定如何使用belongs_to 方法来完成此操作。

in my rails app, I have an Organization model, with a reference to a User, which I want to be able to access via organization_instance.adminstrator. I'm not sure how to accomplish this using the belongs_to method.

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

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

发布评论

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

评论(1

痞味浪人 2024-08-26 16:13:22

没关系。正确的解决方案(正如我发现的那样)是执行以下操作:

belongs_to :administrator, :class_name => "User"

有趣的是,阅读文档可以为您做些什么:D

但是,这提出了一个新问题,该问题在文档中并不直接明显:如何生成迁移这?会

t.references :user

吗?

t.references :administrator

是正确的方法

Nevermind. The proper solution (as I found it), is to do the following:

belongs_to :administrator, :class_name => "User"

interesting what reading the documentation can do for you :D

However, this poses a new question which is not directly apparent from the documentation: How do I generate the migration for this? Would

t.references :user

or

t.references :administrator

be the correct way?

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