RoR“有很多”链接>如何通过外键获取标题?

发布于 2024-11-16 17:31:14 字数 650 浏览 3 评论 0原文

我在 RoR 中有一个基本的关系问题:

在视图中,我尝试显示组的标题,该标题位于表“groups”中,并且只有键“group_id”存储在表/对象“product”中。

当我编写product.group_id时,我会在数据库中看到该值,但是如果我编写product.group.title,RoR会告诉我#的未定义方法“group”。

这是一个基本问题,所以我感谢您的帮助!

视图中的代码(这可以工作,但太糟糕了!我确信有一种像product.group.title这样的方法)

<% @products.each do |product| %>
  <%= Group.find(product.group_id).title %>  </td>
<% end %>

和模型:

class Group < ActiveRecord::Base
  has_many :products, :dependent => :destroy
end

class Product < ActiveRecord::Base
  belongs_to :groups
  has_and_belongs_to_many :authors
end

I have a basic question of relationship in RoR :

In a view, I try to display the title of a group, which is in the table "groups", and only the key "group_id" is stored in the table/object "product".

When I write product.group_id, I see the value in the database, but if I write product.group.title, RoR tolds me undefined method `group' for #.

This is a basic question so I appreciate your help !

The code in the view (this works but is so awful ! I'm sure there is a way like product.group.title)

<% @products.each do |product| %>
  <%= Group.find(product.group_id).title %>  </td>
<% end %>

and the models :

class Group < ActiveRecord::Base
  has_many :products, :dependent => :destroy
end

class Product < ActiveRecord::Base
  belongs_to :groups
  has_and_belongs_to_many :authors
end

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

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

发布评论

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

评论(1

倾城°AllureLove 2024-11-23 17:31:14

应该是 belongs_to :group 而不是 groups

另外,在您看来,您可以更轻松地执行此操作:

<% @products.each do |product| %>
  <%= product.group.title %>  </td>
<% end %>

Should be belongs_to :group not groups

Also, in your view, you could more easily do this:

<% @products.each do |product| %>
  <%= product.group.title %>  </td>
<% end %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文