[問題] 如何建立遞迴的多對多關聯

看板Ruby作者 (咧嘴南瓜)時間11年前 (2013/11/29 15:32), 編輯推噓5(5013)
留言18則, 5人參與, 最新討論串1/1
各位前輩大家好 小弟是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
聽起來像是tree 用act_as_tree 試試?
11/29 15:52, 1F

11/29 15:52, , 2F

11/29 16:09, , 3F
謝謝建議 但跟tree有點不太像 tree的child只有一個parent
11/29 16:09, 3F

11/29 16:54, , 4F
記得根據ihower的教學 多對多中間要有連接的表格當媒介
11/29 16:54, 4F

11/29 17:10, , 5F
是的 但我這是同一個entity自己跟自己的多對多
11/29 17:10, 5F

11/29 17:11, , 6F
Componentship就是那個連接的表格
11/29 17:11, 6F

11/29 17:46, , 7F
實際用你的 code 測試沒有問題耶
11/29 17:46, 7F

11/29 22:50, , 8F
請問也是rails 4嗎?
11/29 22:50, 8F

11/30 00:19, , 9F
11/30 00:19, 9F

11/30 12:30, , 10F
是阿,附上我的 code:http://pastie.org/8518169
11/30 12:30, 10F

11/30 12:31, , 11F
我其實只有把名字改得短一點而已,其他都和你一樣
11/30 12:31, 11F

11/30 12:31, , 12F
原PO想要的應該只是自己跟自己建立關連而已,應該不需要
11/30 12:31, 12F

11/30 12:31, , 13F
用到太複雜的 gem?
11/30 12:31, 13F

12/02 17:55, , 14F
初學者多多增廣見聞也不錯啊 XD 謝謝wuboy的建議
12/02 17:55, 14F

12/02 17:57, , 15F
kusoayan感謝您幫我測試 我後來發現應該是我在console裡
12/02 17:57, 15F

12/02 18:00, , 16F
測的方式不對 我後來在controller中@part.cparts就成功了
12/02 18:00, 16F

12/02 18:02, , 17F
但我發現這樣好像不能存取到Componentship.amount
12/02 18:02, 17F
※ 編輯: He11oWin 來自: 114.46.219.207 (12/02 18:09)

12/04 01:04, , 18F
@part.ppart_ship.amount 應該就可以?
12/04 01:04, 18F
文章代碼(AID): #1Ic4BwpI (Ruby)
文章代碼(AID): #1Ic4BwpI (Ruby)