方法
实例公开方法
attribute(name, cast_type = nil, default: nil, **options) 链接
定义模型属性。除了属性名称之外,还可以指定强制转换类型和默认值,以及给定强制转换类型支持的任何选项。
class Person
include ActiveModel::Attributes
attribute :name, :string
attribute :active, :boolean, default: true
end
person = Person.new
person.name = "Volmer"
person.name # => "Volmer"
person.active # => true
来源:显示 | 在 GitHub 上
# File activemodel/lib/active_model/attributes.rb, line 59 def attribute(name, ...) super define_attribute_method(name) end
attribute_names() 链接
返回属性名称的字符串数组。
class Person
include ActiveModel::Attributes
attribute :name, :string
attribute :age, :integer
end
Person.attribute_names # => ["name", "age"]
来源:显示 | 在 GitHub 上
# File activemodel/lib/active_model/attributes.rb, line 74 def attribute_names attribute_types.keys end
type_for_attribute(attribute_name, &block) 链接
在应用任何修改器后,返回指定属性的类型。此方法是有关模型属性类型相关信息的唯一有效来源。此方法的返回值将实现由 ActiveModel::Type::Value
描述的接口(尽管对象本身可能不是它的子类)。
来源:在 GitHub 上
# File activemodel/lib/active_model/attributes.rb, line 79