这里我有一些代码:
def show
@post = Post.find()
end
end
用户模型有has_many :posts 并且帖子模型有belongs_to :user。现在如何使显示操作仅显示登录用户的帖子。登录的用户是“current_user”?
这里我有一些代码:
def show
@post = Post.find()
end
end
用户模型有has_many :posts 并且帖子模型有belongs_to :user。现在如何使显示操作仅显示登录用户的帖子。登录的用户是“current_user”?