如何在Rails 6中获取用户与朋友的多对多关联的created_at?
Posted
技术标签:
【中文标题】如何在Rails 6中获取用户与朋友的多对多关联的created_at?【英文标题】:How to get the created_at of the many to many association of User with friends in Rails 6? 【发布时间】:2021-12-11 00:05:14 【问题描述】:我有 2 个表,一个用户和其他朋友,我已经建立了一种关系,用户可以互相关注。
class Friendship < ApplicationRecord
belongs_to :user
belongs_to :friend, class_name: "User"
end
class User < ApplicationRecord
has_many :posts
has_many :friendships
has_many :likes
has_many :comments
has_many :friends, through: :friendships
我已经在用户的控制器中设置了@friends = current_user.friends,它可以获取我所有的朋友,但我还想获得友谊形成时的时间戳。
Friendship Table Attributes: id, user_id, friend_id, created_at, updated_at
User Table Attributes: id, email, password, ..., created_at, updated_at
我想从友谊表中获取当前用户的所有朋友以及 created_at,即友谊形成的时间。
【问题讨论】:
【参考方案1】:如果您还想显示友谊的创建日期,那么最简单的方法是加载用户的友谊而不是他们的朋友。
代替
@friends = current_user.friends
你可以写
# in your controller
@friendships = current_user.friendships.include(:friend)
# in the view
<% @friendships.each do |friendship| %>
The friend <%= friendship.friend %>
since <% friendship.created_at %>
<% end %>
顺便说一句,我在查询中添加了 include
以避免 N+1 查询。
【讨论】:
这是一种方法,谢谢。以上是关于如何在Rails 6中获取用户与朋友的多对多关联的created_at?的主要内容,如果未能解决你的问题,请参考以下文章