在 ActiveRecord 中使用 STI 和多态性时,需要执行以下操作以确保
:dependent => :destroy
将正常工作:
def attachable_type=(sType)
super(sType.to_s.classify.constantize.base_class.to_s)
end
有没有人在 Mongoid 上成功使用过 STI 和多态性?
在 ActiveRecord 中使用 STI 和多态性时,需要执行以下操作以确保
:dependent => :destroy
将正常工作:
def attachable_type=(sType)
super(sType.to_s.classify.constantize.base_class.to_s)
end
有没有人在 Mongoid 上成功使用过 STI 和多态性?