我已将此信誉系统(twiiter rep system)添加到Act_As_Taggable_on 所以,现在我想将声誉添加到Taggings表中,如下所示:
#config/initializers/act_as_taggable_on.rb
ActsAsTaggableOn::Tagging.class_eval do
has_reputation :post_points,
:source => :user # this is where I'm stuck
end
我想通过Tags user_id说明用户,我怎么能用ruby语法来解决这个问题?
答案 0 :(得分:1)
您可以查看此博客文章,了解如何构建博客。向下滚动到第13节,其中显示了如何使用标签和标签模型以及如何关联它们。它可能会帮助你一点点。
http://tutorials.jumpstartlab.com/projects/blogger.html
has_many :taggings
has_many :tags, through: :taggings