我有什麼:CURRENT_USER可以看到評論僅供網友給他的職位
scaffold Post title body user_id
scaffold Comment body tag post:references
post has_many :comments
當前評論控制器:
def index
@comments = Comment.where(tag: [1, 3])
end
我想啓用當前色器件用戶看到的評論列表所有隻有他帖子。如何做呢?與current_user
?
請解釋一下你需要什麼 – techdreams
我想讓當前的設計用戶只看到他所有帖子的評論列表。類似於'comment.user_id = current_user_id' –
你想在current_user中查看只有current_user對帖子的評論....對嗎? – techdreams