2
我有一個如何使這個活動記錄協會
項目模型
class Item < ActiveRecord:Base
has_and_belongs_to_many :orders
end
而且訂單模型
class Order < ActiveRecord:Base
has_and_belongs_to_many : items
end
一個訂單可以有很多項目,其中HABTM會照顧的。但是,我在哪裏/如何儲存正在訂購的物品的數量?
例如: 可以說Order1中有Item1和Item2。現在我想存儲與項目相關的數量,如Order1有兩個Item1和五個Item2。
什麼是軌道的方式來做到這一點?