@myhash
我在 Ruby 中有以下哈希 ( ):
[
{
"id" => "123456789",
"name" =>"Random name",
"list_type" =>"random type of list"
}
]
如何从哈希中取出 id 的值?(基本上我的结果应该是:123456789)
- 当我尝试这样做时
@myhash[:id]
,出现以下错误“无法将符号转换为整数” - 当我尝试这样做时
@myhash['id']
,出现以下错误“无法将字符串转换为整数”
我试过添加.to_i
,.to_s
等等,但没有任何帮助。