かなり初歩的な質問のように見えるものについて、なぜ何も見つからないのかわかりません。次のようなものがあるとしましょう
class Category < ActiveRecord::Base
has_many :categorizations
has_many :items, :through => :categorizations
end
class Item < ActiveRecord::Base
has_many :categorizations
has_many :categories, :through => :categorizations
end
class Categorization < ActiveRecord::Base
attr_accessible :some_field
belongs_to :category
belongs_to :item
end
および関連する移行。次に、できること
item1=Item.new()
item2=Item.new()
foo=Category.new()
foo.items=[ item1, item2 ]
、 右?では、:some_field の値を設定するために、foo を item1 および item2 にリンクする分類をどのように取得するのでしょうか?