自我指涉协会

自引用关联用于将模型与其自身相关联。最常见的例子是,管理朋友和他的追随者之间的关联。

恩。

rails g model friendship user_id:references friend_id:integer

现在你可以关联模特了;

class User < ActiveRecord::Base
  has_many :friendships
  has_many :friends, :through => :friendships
  has_many :inverse_friendships, :class_name => "Friendship", :foreign_key => "friend_id"
  has_many :inverse_friends, :through => :inverse_friendships, :source => :user
end

而另一个模型看起来像;

class Friendship < ActiveRecord::Base
  belongs_to :user
  belongs_to :friend, :class_name => "User"
end