gpt4 book ai didi

ruby-on-rails - Rails 多态性 'backwards'

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

假设我正在编写一个博客应用程序,其中包含帖子、页面和照片的模型。我有一个类别模型,可以链接到这些模型中的任何一个。因此,一个类别可能包含各种项目。每个项目只有一个类别。

我可以使用带有连接表的通用标记模式来实现这一点,但我想确保每个主题只能有类别。

在 Rails 中实现它的最佳方法是什么?

最佳答案

好的,我想我明白了:

class Post < ActiveRecord::Base
has_one :categorization, :as => :categorizable
has_one :category, :through => :categorization
end

class Category < ActiveRecord::Base
has_many :categorizations, :dependent => :destroy
end

class Categorization < ActiveRecord::Base
belongs_to :category
belongs_to :categorizable, :polymorphic => true
end

现在各种模型可以有一个类别,但每个实例只能有一个类别......我猜。

关于ruby-on-rails - Rails 多态性 'backwards',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1278358/

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