在我的带有 Spree 的 Rails 3.2 应用程序中,我想要一个与 Spree 提供的WishList
模型有has_many
关系的Spree::Product
模型。我已经创建了一个装饰器类来声明一个belongs_to
关系,Spree::Product
但是我如何Spree::Product
在我自己创建的另一个模型中引用。
我都试过了
class WishList < ActiveRecord::Base
has_many :products
end
和
class WishList < ActiveRecord::Base
has_many :spree_products
end
他们都没有工作。请帮忙。