instance method read_attribute_for_validation

Ruby on Rails 8.1.4

Since v8.1.4

Available in: v8.1.4 edge

Signature

read_attribute_for_validation(key)

Hook method defining how an attribute value should be retrieved. By default this is assumed to be an instance named after the attribute. Override this method in subclasses should you need to retrieve the value for a given attribute differently:

class MyClass
  include ActiveModel::Validations

  def initialize(data = {})
    @data = data
  end

  def read_attribute_for_validation(key)
    @data[key]
  end
end

Parameters

key req
Source
# File activemodel/lib/active_model/validations.rb, line 439
    def read_attribute_for_validation(key)
      send(key)
    end

Defined in activemodel/lib/active_model/validations.rb line 439 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActiveModel::Validations

Type at least 2 characters to search.

Use the arrow keys to navigate results, Enter to open one, Escape to close.

Keyboard shortcuts

/
Focus search
⌘K / Ctrl-K
Command palette
?
This help
Esc
Close