Sök…


Anmärkningar

ActiveModel skapades för att extrahera ActiveRecords modellbeteende till ett separat problem. Detta tillåter oss att använda ActiveModel-beteende i alla objekt, inte bara ActiveRecord-modeller.

ActiveRecord-objekt inkluderar allt detta beteende som standard.

Använda ActiveModel :: Valideringar

Du kan validera alla objekt, till och med vanlig rubin.

class User
  include ActiveModel::Validations

  attr_reader :name, :age

  def initialize(name, age)
    @name = name
    @age  = age
  end

  validates :name, presence: true
  validates :age, numericality: { only_integer: true, greater_than: 12 }
end
User.new('John Smith', 28).valid? #=> true
User.new('Jane Smith', 11).valid? #=> false
User.new(nil, 30).valid?          #=> false


Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow