跳至内容 跳至搜索
方法
A
T

实例公开方法

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
# 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"]
# 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 描述的接口(尽管对象本身可能不是它的子类)。

# File activemodel/lib/active_model/attributes.rb, line 79