简体   繁体   中英

polymorphic and one-to-many association

I have a Collaboration model with a polymorphic association with a Grade | School, and a one-to-many association with a User

  belongs_to :owner, polymorphic: true
  belongs_to :user, foreign_key: "teacher_id"

this is the way i manage the users who can access a school or a grade. Now, what i need is to do something like this

School.first.teachers 
Grade.first.teachers

I think it would be something like this in the Grade/School model

has_many :teachers, through: :collaborations, foreign_key: "teacher_id" 

but it doesn't seem to be the right solution. Any ideas?

has_many :collaborations, :as => :owner
has_many :teachers, :through => :collaborations, :source => :user

You need to establish the polymorphic association to collaborations. Try:

class School < ActiveRecord::Base
  has_many :collaborations, :as => :owner
  has_many :teachers, :through => :collaborations
end

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM