我有一个
Store
模型has_many :clothes
和
Clothe
belongs_to: store
。
给定一系列与store1
相关联的衣服,一个Store实例:
store1.clothes # [cloth1, cloth2, cloth3]
,
将这些衣服与store2
相关联的最简洁方法是什么?
我知道我可以循环遍历所有这些并推动它们,但这对我来说并不干净:
store1.clothes.each { |c| store2.clothes << c }
。有更好的方法吗?
答案 0 :(得分:2)
怎么样
store2.clothes << store1.clothes