私は関係を持つ2つのモデルを持っていますhas_and_belongs_to_many
:
class Category < ActiveRecord::Base
has_and_belongs_to_many :templates
end
class Template < ActiveRecord::Base
has_and_belongs_to_many :categories
end
このリレーションからカテゴリ名を取得する方法を知りたいです。たとえば、最初のテンプレートを見つけます。
t = Template.find(:first)
次に、使用t.categories
するとオブジェクトが返されますが、代わりにcategory.nameが必要です。どうすればこれを達成できますか?