我有一个奇怪的情况:我想在P的创建者和当前的用户成为朋友的时间点击所有帖子P.
结果将是一个最新的朋友的帖子和最上面的朋友帖子的帖子列表.我们可以假设所有用户都是所有其他用户的朋友,但每个友谊都有不同的创建时间.
我有Post,User和Friendship模型.帖子属于用户,用户有很多友谊.
class User < ActiveRecord::Base has_many :friendships has_many :friends,:through => :friendships has_many :inverse_friendships,:class_name => "Friendship",:foreign_key => "friend_id" has_many :inverse_friends,:through => :inverse_friendships,:source => :user end class Friendship < ActiveRecord::Base belongs_to :user belongs_to :friend,:class_name => "User" end class Post < ActiveRecord::Base belongs_to :user end
最好的方法是什么?谢谢!
解决方法
您可以通过执行嵌套连接在相关表上订购,如下所示:
@posts = Post.joins(:user => :friendships).order("friendships.friended_at")