gpt4 book ai didi

ruby-on-rails - 如何:Spree::Product 与您的其他模型之间的关系

转载 作者:太空宇宙 更新时间:2023-11-03 18:23:21 25 4
gpt4 key购买 nike

在我的带有 Spree 的 Rails 3.2 应用程序中,我想要一个 WishList具有 has_many 的模型关于 Spree::Product 的关系Spree 提供的模型。我已经创建了一个装饰器类来声明一个 belongs_to关系成Spree::Product但我怎样才能引用Spree::Product在我自己创建的另一个模型中。

我都试过了

class WishList < ActiveRecord::Base
has_many :products
end

class WishList < ActiveRecord::Base
has_many :spree_products
end

但没有一个有效。请帮忙。

最佳答案

使用 :class_name 选项:

class WishList < ActiveRecord::Base
has_many :spree_products, :class_name => 'Spree::Product'
end

关于ruby-on-rails - 如何:Spree::Product 与您的其他模型之间的关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14571432/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com