after_validation

after_validation(*args, &block)
Instance Public methods

Defines a callback that will get called right after validation happens.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
class Person
  include ActiveModel::Validations
  include ActiveModel::Validations::Callbacks
 
  attr_accessor :name, :status
 
  validates_presence_of :name
 
  after_validation :set_status
 
  private
 
  def set_status
    self.status = errors.empty?
  end
end
 
person = Person.new
person.name = ''
person.valid? # => false
person.status # => false
person.name = 'bob'
person.valid? # => true
person.status # => true
doc_ruby_on_rails
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.