ruby-on-rails – 需要来自rails的数据连接表,has_many:through

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 需要来自rails的数据连接表,has_many:through前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有3个表 – 用户,事情和跟随.用户可以通过以下表格来跟踪事件,将user_id与things_id相关联.这意味着:
class User
  has_many :things,:through => :follows
end

class Thing
  has_many :users,:through => :follows
end

class Follow
  belongs_to :users
  belongs_to :things
end

所以我可以检索thing.users没有问题.我的问题是,如果在下面的表中,我有一个名为“关系”的列,所以我可以设置一个追随者作为“管理员”,我想要访问该关系.所以在循环中我可以做一些像:

<% things.users.each do |user| %>
  <%= user.relation %>
<% end %>

有没有办法将关系包含在原始用户对象中?我试过:select => “follow.relation”,但它似乎不加入属性.

解决方法

为此,您需要在has_many中使用一些sql.这样的事情应该有希望的工作.
has_many:users,:through =>如下:select => ‘users.*,follow.is_admin as is_follow_admin’

然后在循环中你应该可以访问user.is_follow_admin

猜你在找的Ruby相关文章