[問題] 如何建立遞迴的多對多關聯
各位前輩大家好 小弟是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
請問有人知道是甚麼問題嗎?
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 61.228.61.217
推
11/29 15:52, , 1F
11/29 15:52, 1F
→
11/29 15:52, , 2F
11/29 15:52, 2F
→
11/29 16:09, , 3F
11/29 16:09, 3F
推
11/29 16:54, , 4F
11/29 16:54, 4F
→
11/29 17:10, , 5F
11/29 17:10, 5F
→
11/29 17:11, , 6F
11/29 17:11, 6F
推
11/29 17:46, , 7F
11/29 17:46, 7F
→
11/29 22:50, , 8F
11/29 22:50, 8F
→
11/30 00:19, , 9F
11/30 00:19, 9F
推
11/30 12:30, , 10F
11/30 12:30, 10F
→
11/30 12:31, , 11F
11/30 12:31, 11F
→
11/30 12:31, , 12F
11/30 12:31, 12F
→
11/30 12:31, , 13F
11/30 12:31, 13F
→
12/02 17:55, , 14F
12/02 17:55, 14F
→
12/02 17:57, , 15F
12/02 17:57, 15F
→
12/02 18:00, , 16F
12/02 18:00, 16F
→
12/02 18:02, , 17F
12/02 18:02, 17F
※ 編輯: He11oWin 來自: 114.46.219.207 (12/02 18:09)
推
12/04 01:04, , 18F
12/04 01:04, 18F
Ruby 近期熱門文章
PTT數位生活區 即時熱門文章