2014-04-03 47 views
0

我有一個Rails 3:給定一組衣服記錄,將它們關聯到Store實例的最簡潔方法是什麼?

Store模型has_many :clothes

Clothebelongs_to: store

考慮到衣服的陣列與store1相關,商店的一個實例:

store1.clothes # [cloth1, cloth2, cloth3]

什麼是對那些衣服關聯到store2最乾淨的方式是什麼?

我知道我可以遍歷所有的人,並推動他們,但並不感覺乾淨對我說:

store1.clothes.each { |c| store2.clothes << c }。有更好的方法嗎?

回答

2

如何

store2.clothes << store1.clothes 
+0

偉大的工作。謝謝! – Edmund

+0

很高興幫助。請在超時結束時接受答案:) –

+0

不,不會的。 –

相關問題