我对我的网站有疑问。方案如下:
一个用户和一个帖子有很多评论。评论属于用户和帖子。
我愿意
@specificpost = Post.first
然后
@specificpost.comments
工作得很好。但问题是这样的:
@currentuser = User.first
工作得很好。
@currentuser.posts
给我帖子对象,但是当我这样做时
@currentuser.posts.comments
评论无法识别。
简而言之,我想获得@currentuser 帖子中写的所有评论
谢谢你读到这里!:)