我想为颜色创建一个选择列表,但不想为颜色创建表格。我在任何地方都看过它,但在谷歌上找不到它。
我的问题是:如何在没有数据库表的情况下将颜色放在模型中?
或者有更好的轨道方式吗?
我见过有人直接在模型中放入数组或哈希,但现在我找不到了。
答案 0 :(得分:55)
class Model
include ActiveModel::Validations
include ActiveModel::Conversion
extend ActiveModel::Naming
attr_accessor :whatever
validates :whatever, :presence => true
def initialize(attributes = {})
attributes.each do |name, value|
send("#{name}=", value)
end
end
def persisted?
false
end
end
attr_accessor将创建您的属性,您将使用initialize()和set attributes创建对象。
持久化的方法将告诉我们没有与数据库的链接。你可以找到这样的例子: http://railscasts.com/episodes/219-active-model?language=en&view=asciicast
这将解释你的逻辑。
答案 1 :(得分:14)
2013年的答案很好,但现在rails 4已将ActiveRecord
中所有与数据库无关的功能提取到ActiveModel
。此外,还有一个很棒的official guide。
您可以根据需要包含尽可能多的模块,也可以尽量少。
例如,您只需要include ActiveModel::Model
,就可以放弃这样的initialize
方法:
def initialize(attributes = {})
attributes.each do |name, value|
send("#{name}=", value)
end
end
只需使用:
attr_accessor :name, :age
答案 2 :(得分:7)
最简单的答案就是不要从ActiveRecord :: Base中继承子类。然后你就可以编写你的目标代码了。
答案 3 :(得分:1)
如果需要一个没有关联表的模型的原因是要创建一个抽象类,则真实模型继承自- ActiveRecord
支持:
class ModelBase < ActiveRecord::Base
self.abstract_class = true
end
答案 4 :(得分:0)
如果您想要一个选择列表(不会发展),您可以在ApplicationHelper
中定义一个返回列表的方法,例如:
def my_color_list
[
"red",
"green",
"blue"
]
end
答案 5 :(得分:0)
在 Rails 6 中对我有用的东西:
class MyClass
include ActiveModel::Model
attr_accessor :my_property
end