1
在博客應用程序中我想顯示帶有文章的標籤列表。查找帶有文章的標籤
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
謝謝@ thomas-klemm正是我所需要的。 – olimart 2013-03-25 21:21:55
不客氣:--D – 2013-03-25 21:27:20