Rails Associations - has_many => :through - but same model

前端 未结 2 1082
慢半拍i
慢半拍i 2020-12-23 00:09

What I am trying to do:

I have a blog and want to show related posts below the main post.

class Post < ActiveRecord::Base

  has_many :related_pos         


        
2条回答
  •  天涯浪人
    2020-12-23 00:26

    You're looking for self referential association.

    I suggest you take inspiration here.

提交回复
热议问题