各位前輩大家好 小弟是RoR的初學者
目前用的環境是ruby 2.0 + rails 4
最近碰到了一個有點苦惱的問題
我想建一個多對多的遞迴關聯 但一直搞不定
我想寫一個管理零組件的程式 一個零件是由其他零件所組成
而這個零件也有可能是其他零件的組成元件
另外還需紀錄一個組成關係 需要用到的組成元件數量
所以建了兩個Model如下
part(name:string)
componentship(ppart_id:integer,cpart_id:integer, amount:float)
零件ID 組成元件ID
並設定關聯如下
class Part < ActiveRecord::Base
has_many :componentship_cparts, :foreign_key => :ppart_id,
:class_name => 'Componentship'
has_many :cparts, :through => :componentship_cparts,
:foreign_key => :cpart_id, :class_name => 'Part'
has_many :componentship_pparts, :foreign_key => :cpart_id,
:class_name => 'Componentship'
has_many :pparts, :through => :componentship_pparts,
:foreign_key => :ppart_id, :class_name =>'Part'
end
class Componentship < ActiveRecord::Base
belongs_to :ppart, :class_name => 'part', :foreign_key => 'ppart_id'
belongs_to :cpart, :class_name => 'part', :foreign_key => 'cpart_id'
end
但我在console裡面建立好測試的資料後
打算測試上面的關聯ex. p4.cparts
卻一直出現NameError: uninitialized constant Part::componentship
請問有人知道是甚麼問題嗎?