Serialization
class Post < ActiveRecord::Base
serialize :title, Hash
end
# 新建对象时,title 相当于 Hash 的名字
post = Post.new
post.title
# => {}
post.title.class
# Hash
post.title = { name: 'Your Name.' }
post.title[:name]
# => Your Name.最后更新于
class Post < ActiveRecord::Base
serialize :title, Hash
end
# 新建对象时,title 相当于 Hash 的名字
post = Post.new
post.title
# => {}
post.title.class
# Hash
post.title = { name: 'Your Name.' }
post.title[:name]
# => Your Name.最后更新于