我有一个应用程序,我在那里显示当前用户的帖子(posts.current_user)。我想通过comment.date排序来显示最近评论过的帖子。它似乎不想这样做......我一直在努力:
PG :: UndefinedTable:错误:缺少表“comment”
的FROM子句条目我的控制器
def_index
@posts = current_user.posts.includes(:comment).order("comment.date ASC").includes(:image)
end
我尝试过加入并包括一个我似乎无法解决这个问题。谢谢。
答案 0 :(得分:16)
尝试:
@posts = current_user.posts.joins(:comment).order("comments.date ASC").includes(:image)
说明: