ruby-on-rails-3 – 如何从表记录的子集创建Rails模型

ruby-on-rails-3 – 如何从表记录的子集创建Rails模型,第1张

概述我正在尝试创建几个模型,所有模型都来自同一个表.如何限制每个模型中的表记录?在你告诉我改变我的数据结构之前,这是一个报告应用程序,它从一个我无法控制的预先存在的后备数据库中提取. 我的表看起来像: Vehicle_Tableid vehicle_type name--------------------1 Car Foo2 Car Bar3 Mo 我正在尝试创建几个模型,所有模型都来自同一个表.如何限制每个模型中的表记录?在你告诉我改变我的数据结构之前,这是一个报告应用程序,它从一个我无法控制的预先存在的后备数据库中提取.

我的表看起来像:

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 inheritance

Active 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模型所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1286694.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-09
下一篇 2022-06-09

发表评论

登录后才能评论

评论列表(0条)

保存