我有一个哈希:

h = {
    "revision"=>7,
    "rev"=>"708a4bd5b",
    "thumb_exists"=>false,
    "bytes"=>246000,
    "modified"=>"Sun, 01 Jul 2012 17:09:15 +0000",
    "client_mtime"=>"Sun, 01 Jul 2012 17:09:15     +0000",
    "path"=>"/Getting Started.pdf",
    "is_dir"=>false,
    "icon"=>"page_white_acrobat",
    "root"=>"dropbox",
    "mime_type"=>"application/pdf",
    "size"=>"240.2 KB"
}

我想使用以下命令将其保存在数据库中:h.to_s然后,我想从数据库中获取内容并将其作为哈希使用。
s = MyModel[:field_which_contains_hash_string]

我尝试使用YAML::load s加载内容,但出现错误:
Psych::SyntaxError: (<unknown>): found unexpected ':' while scanning a plain scalar at line 1 column 96

我猜这是由于时间字符串中的冒号所致。
那么,持久保存哈希并再次检索它的最佳方法是什么?

感谢您的帮助。
最好的,
菲利普

最佳答案

在模型中创建一列文字类型。然后在模型文件中

class MyModel < ActiveRecord::Base
    serialize :column_name, Hash
end

然后使用以下命令访问它:
my_model = MyModel.new
my_model.column_name[:key] = value
my_model.column_name[:key]

哈希将使用YAML序列化到列中

http://api.rubyonrails.org/classes/ActiveRecord/AttributeMethods/Serialization/ClassMethods.html#method-i-serialize

关于ruby-on-rails - 我如何序列化-反序列化哈希以将其保存在数据库中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11729982/

10-15 23:26