2

我一直在试图弄清楚如何制作它,以便我可以创建一个活动页面,列出其他用户对您的 OWN 个人帖子的喜欢。就我而言,我没有朋友或关注系统,所以实际上任何注册的人都可以喜欢一个帖子。我一直在到处寻找,但找不到如何完成的示例

目前,我在我的后控制器中定义了一个类似的方法

def like
  @post = Post.find(params[:id])
  @post.upvote_by current_user
  redirect_to :back
end

我还有一个活动控制器:

class ActivitiesController < ApplicationController
  def index
    @activities = PublicActivity::Activity.where(trackable_type: "Post", trackable_id: current_user.post_ids, key: "post.like")
  end
end

我的 Post 模型如下所示:

class Post < ActiveRecord::Base
  belongs_to :user
  acts_as_votable

  include PublicActivity::Model
  tracked only: [:create, :like], owner: Proc.new{ |controller, model| model.user }

  default_scope -> { order('created_at DESC') }
end

我的活动视图模板如下所示:

<% @activities.each do |activity| %>
  <%= activity.inspect %>
<% end %>

截至目前,我的通知页面没有显示任何内容。我如何去显示一个提要,显示我的帖子从其他用户那里收到的所有喜欢。非常感谢

4

1 回答 1

0

upvote_by帖子上调用时,ActsAsVotable::Vote会创建一条记录。因此,如果您想记录投票,您必须向此模型添加公共活动。

class ActsAsVotable::Vote
  include PublicActivity::Model
  tracked only: [:create], owner: Proc.new{ |controller, model| model.user }
end
于 2016-01-05T02:51:33.420 回答