如何使用 acts_as_votable gem 让所有帖子都被当前用户投票

how to get all the posts upvoted be current user using acts_as_votable gem

我想显示所有用户点赞的帖子,我该怎么做。

假设你有这样的模型

class Post < ApplicationRecord
  acts_as_votable
end
class User < ApplicationRecord
  acts_as_voter
end

获取某个用户的所有 upvoted 帖子(例如 current_user

current_user.get_up_voted(Post)

请同时查看 docs