我的表看起来像:
Vehicle_tableID vehicle_type name--------------------1 Car Foo2 Car bar3 Motorcycle Baz4 Car barf
我想为汽车和摩托车建造模型,如:
class Car < ActiveRecord::Base set_table_name 'Vehicle_table'end
和
class Motorcycle < ActiveRecord::Base set_table_name 'Vehicle_table'end
但是我不知道怎么说,“嘿活跃唱片,我只想要记录里面的车辆类型=摩托车模型中的摩托车.”
我确信这很明显,但我的所有Google搜索都会返回模型中FIND子集的方式,而不是将模型限制为特定的记录子集.
解决方法 这称为单表继承(STI).如果表中有一个名为type的列,它可能会自动运行.但是您可以更改Rails使用的列名称来区分类型.
http://api.rubyonrails.org/classes/ActiveRecord/Base.html
Single table inheritanceActive Record allows inheritance by storing the name of the class in a column that by default is named “type” (can be changed by overwriting Base.inheritance_column). This means that an inheritance looking like this:
class Company < ActiveRecord::Base; endclass Firm < Company; endclass ClIEnt < Company; endclass PriorityClIEnt < ClIEnt; end
When you do Firm.create(:name => “37signals”),this record will be saved in the companIEs table with type = “Firm”. You can then fetch this row again using Company.where(:name => ’37signals’).first and it will return a Firm object.
所以,试试这个代码吧
class Car < ActiveRecord::Base set_table_name 'Vehicle_table' self.inheritance_column = :vehicle_typeend总结
以上是内存溢出为你收集整理的ruby-on-rails-3 – 如何从表记录的子集创建Rails模型全部内容,希望文章能够帮你解决ruby-on-rails-3 – 如何从表记录的子集创建Rails模型所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)