我有 3 个表,我试图找出我需要的关联,以便在视图中循环它们并输出所有必要的字段:
表:博客
- ID
- 姓名
表:blog_comment_type
- ID
- comment_type_id(这是 comment_type 表中的匹配 id)。
表:comment_type
- ID
- 姓名
我能够遍历 blog_comment_type 并获得我需要的所有内容,但我想要提取的一个缺失字段是 comment_type 表中的“名称”字段。
<% @blog.blog_comment_types.each do |blog_comment_type| %>
<tr>
<td><%= blog_comment_type.comment_type_id %></td>
<td>Comment name goes here</td>
</tr>