我一直在将一个哈希保存到数据库字段中,该字段具有类型文本,因此当我从表中获取它时,它看起来像
"---\nnew: test1\ndelivered:\n mess: delete\n"
def check_type
final_text = "---\nnew: test1\ndelivered:\n mess: delete\n"
final_json = YAML.load(final_text)
first_val = final_json["new"]
end
为了将此字符串作为哈希,我使用YAML将该字符串转换为哈希,它工作正常,我的问题是有任何其他方式而不是使用此YAML将此字符串转换为哈希