跳至内容 跳至搜索

Active Record 序列化

方法
S
包含的模块

实例公共方法

serializable_hash(options = nil)

# File activerecord/lib/active_record/serialization.rb, line 13
def serializable_hash(options = nil)
  if self.class._has_attribute?(self.class.inheritance_column)
    options = options ? options.dup : {}

    options[:except] = Array(options[:except]).map(&:to_s)
    options[:except] |= Array(self.class.inheritance_column)
  end

  super(options)
end