在博客应用程序上,我想显示带有文章的标签列表。
class Article < AR::B
has_and_belongs_to_many :tags
end
class Tag < AR::B
has_and_belongs_to_many :articles
end
标签范围会是什么样子?
Tag.joins(:articles) ... # should return tags associated to at least 1 article
在博客应用程序上,我想显示带有文章的标签列表。
class Article < AR::B
has_and_belongs_to_many :tags
end
class Tag < AR::B
has_and_belongs_to_many :articles
end
标签范围会是什么样子?
Tag.joins(:articles) ... # should return tags associated to at least 1 article