ruby-on-rails – 关系像Twitter的追随者/跟随在ActiveRecord

我试图在我的应用程序中表示用户间的关系,用户可以拥有许多关注者,并可以跟随其他用户.
我想要像user.followers()和user.followed_by()
可以请你详细告诉我如何用ActiveRecord来代表这个?

谢谢.

解决方法

你需要两个模型,一个人和一个追随者
rails generate model Person name:string
rails generate model Followings person_id:integer follower_id:integer blocked:boolean

和模型中的以下代码

class Person < ActiveRecord::Base
  has_many :followers,:class_name => 'Followings',:foreign_key => 'person_id'
  has_many :following,:foreign_key => 'follower_id' 
end

并在您撰写的“跟随”类中对应

class Followings < ActiveRecord::Base
  belongs_to :person
  belongs_to :follower,:class_name => 'Person'
end

你可以让你的名字更清楚(我特别不喜欢跟随名字),但这应该让你开始.

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...