0
我有一個Rails 3:給定一組衣服記錄,將它們關聯到Store實例的最簡潔方法是什麼?
Store
模型has_many :clothes
和
Clothe
是belongs_to: store
。
考慮到衣服的陣列與store1
相關,商店的一個實例:
store1.clothes # [cloth1, cloth2, cloth3]
,
什麼是對那些衣服關聯到store2
最乾淨的方式是什麼?
我知道我可以遍歷所有的人,並推動他們,但並不感覺乾淨對我說:
store1.clothes.each { |c| store2.clothes << c }
。有更好的方法嗎?
偉大的工作。謝謝! – Edmund
很高興幫助。請在超時結束時接受答案:) –
不,不會的。 –