Custom serialization for fields in Rails

2020-08-24 07:20发布

Is there a way to have a custom serialization for fields in rails, a method that runs when a field is saved and loaded to convert from/to a string which is what ultimately is saved on the database.

Specifically what I want to do is have a field of type symbol like gender, with possible values :male and :female storing "male" and "female" on the database. There are some workarounds, like:

def gender
  read_attribute(:gender).try(:to_sym)
end

but that leaves obj.attributes unchanged, so it's a leaky abstraction.

7条回答
SAY GOODBYE
2楼-- · 2020-08-24 07:37

you can define the models to_xml for a model and it will do that http://api.rubyonrails.org/classes/ActiveRecord/Serialization.html

its possible to define Marshall.dump and put in that way i think, but its something to look into

查看更多
We Are One
3楼-- · 2020-08-24 07:40
def whachamacallit
  read_attribute("whachamacallit").to_sym
end
def whachamacallit=(name)
  write_attribute("whachamacallit", name.to_s)
end

store them as stings in the database, but extract them as symbols when you pull them out then convert back before you save. would work with any number or combination of strings / symbols.

to limit it to only a select few

validates_inclusion_of :whachamacallit, :in => [ :male, :female, :unknown, :hidden ]
查看更多
可以哭但决不认输i
4楼-- · 2020-08-24 07:44

From http://blog.quov.is/2012/05/01/custom-activerecord-attribute-serializers/

class Recipe < ActiveRecord::Base
  serialize :ingredients, IngredientsList
end

class IngredientsList < Array
  def self.dump(ingredients)
    ingredients ? ingredients.join("\n") : nil
  end

  def self.load(ingredients)
    ingredients ? new(ingredients.split("\n")) : nil
  end
end
查看更多
放荡不羁爱自由
5楼-- · 2020-08-24 07:47

You can do it in Rails 3.1. The object you want to serialize has to reply to load and dump methods.

Here is an example of serializing a string in Base64.

class User < ActiveRecord::Base
  class Base64
    def load(text)
      return unless text
      text.unpack('m').first
    end

    def dump(text)
      [text].pack 'm'
    end
  end

  serialize :bank_account_number, Base64.new
end

For more details see: http://archives.edgerails.info/articles/what-s-new-in-edge-rails/2011/03/09/custom-activerecord-attribute-serialization/index.html

查看更多
我命由我不由天
6楼-- · 2020-08-24 07:49

well for just male/female you could just do a Boolean column like male and if it was false assume that meant female, add wrapper methods for it

def female? 
  return !self.male?
end
查看更多
闹够了就滚
7楼-- · 2020-08-24 07:52

You could use serialize method inside the model. Please reference to this link: http://api.rubyonrails.org/classes/ActiveRecord/Base.html (ps. search keyword "serialize" in that page ;D)

In short, you could do this:

class YourModel < ActiveRecord::Base
  serialize :db_field
end

Rails would automatically serialize the field before saving to database, and deserialize it after fetched from the database.

查看更多
登录 后发表回答