serializable_hash

serializable_hash(options = nil)
Instance Public methods

Returns a serialized hash of your object.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Person
  include ActiveModel::Serialization
 
  attr_accessor :name, :age
 
  def attributes
    {'name' => nil, 'age' => nil}
  end
 
  def capitalized_name
    name.capitalize
  end
end
 
person = Person.new
person.name = 'bob'
person.age  = 22
person.serializable_hash                # => {"name"=>"bob", "age"=>22}
person.serializable_hash(only: :name)   # => {"name"=>"bob"}
person.serializable_hash(except: :name) # => {"age"=>22}
person.serializable_hash(methods: :capitalized_name)
# => {"name"=>"bob", "age"=>22, "capitalized_name"=>"Bob"}
doc_ruby_on_rails
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.