ActiveRecord :: Base#find在单表继承(STI)中返回没有记录

应用程序/模型

class Amodel < ActiveRecord::Base
end

class Bmodel < Amodel
end

class Cmodel < Bmodel  
end

DB /迁移

create_table :amodels do |t|
  t.string :type
end

在脚本/控制台上...

$ script/console
Loading development environment (Rails 2.3.4)
>> Cmodel.create
=> #<Cmodel id: 1, type: "Cmodel">
>> Bmodel.find(:all)
=> [#<Cmodel id: 1, type: "Cmodel">]

好的,但Bmodel在重新启动控制台之后不会返回任何记录,如:

>> exit
$ script/console
Loading development environment (Rails 2.3.4)
>> Bmodel.find(:all)
=> []

但是,它在访问Cmodel后工作:

>> Cmodel
=> Cmodel(id: integer, type: string)
>> Bmodel.find(:all)
=> [#<Cmodel id: 1, type: "Cmodel">]

Amodel的工作原理是:

>> exit
$ script/console
Loading development environment (Rails 2.3.4)
>> Amodel.find(:all)
=> [#<Cmodel id: 1, type: "Cmodel">]

有谁知道它为什么这样工作?

Rails:2.3.4
Ruby:1.8.7
操作系统:Ubuntu 9.0.4


由于ActiveRecord STI的构建方式。 当一个类被加载时,它会注册到它的父级(参见#inherited钩子)。 因此,当您调用Amodel#find或Bmodel#find时,如果子类未知,则无法找到它。

在生产中,这个问题并不明显,因为Rails会在启动时加载所有模型,从而防止出现这种问题。

链接地址: http://www.djcxy.com/p/35949.html

上一篇: ActiveRecord::Base#find returns no records in Single Table Inheritance (STI)

下一篇: ruby on rails