Inheritance and polymorphic-associations in rails

2019-02-03 21:05发布

I have a User model, which belongs to Profile (belongs_to polymorphic). One model comes in two subclasses, but the profile_type in User always correspond to the parent model.

User < ActiveRecord::Base
  belongs_to :profile, :polymorphic => true

SomeProf < ActiveRecord::Base
  has_one :user, :as => :profile

SomeDeepProf1 < SomeProf

SomeDeepProf2 < SomeProf

Then:

sdp1 = SomeDeepProf1.new
user = sdp1.create_user
user.profile_type
> 'SomeProf'

Even stating the association in subclasses, the profile_type remains SomeProf.

Why does this happen? Is there any way profile_type match subclass and not the parent class?

1条回答
贪生不怕死
2楼-- · 2019-02-03 21:55

This happens because the _type column is supposed to identify the model's table and should not contain data on the model itself - just a reference.

However if you inspect user.profile.type it should return SomeDeepProf1.

查看更多
登录 后发表回答