基于http://guides.rubyonrails.org/association_basics.html#self-joins
我创建了一个名为Category
的自连接模型rails g model Category name parent_id:integer
我将模型category.rb更改为如下
Class Category < ActiveRecord::Base
has_many :sub_categories, class_name: "Category", foreign_key: "parent_id"
belongs_to :parent_category, class_name: "Category"
end
现在在控制台中我正在创建两个类别记录为
a = Category.create(name: "Animal")
b = Category.create(name: "Dog")
a.sub_categories << b
a.save
现在
a.sub_categories # returns Dog
然而
b.parent_category # returns nil
如何让parent_category正确返回单个父记录?
如果我做b.parent_category = a
我收到以下错误
ActiveModel::MissingAttributeError: can't write unknown attribute 'parent_category_id'
答案 0 :(得分:7)
您需要修改关联parent_category。
你必须指定外键。
belongs_to :parent_category, class_name: "Category", foreign_key: 'parent_id'