したがって、次の関係がある場合
class Item < ActiveRecord::Base
has_many :item_user_relationships
has_many :users, :through => :item_user_relationships
end
class User < ActiveRecord::Base
has_many :item_user_relationships
has_many :items, :through => :item_user_relationships
end
class ItemUserRelationship < ActiveRecord::Base
belongs_to :item
belongs_to :user
attr_accessible :role
end
role
アイテムのすべてのユーザーをリストするときに属性を含めるレールの方法は何ですか?
@users = @item.users # I want to include the role as part of a user
ありがとう!
更新:私はまだこれに問題があります。私の目標は、属性に役割が含まれている User モデルの配列を取得することです。