Active Record 序列化
方法
包含的模块
实例公共方法
serializable_hash(options = nil) 链接
源代码: 显示 | 在 GitHub 上
# 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