我是 ruby 的新手,我对代码块不熟悉...如何获取 json 格式文本中的所有关键元素?
text= "[{ "name" : "car", "status": "good"},
{ "name" : "bus", "status": "bad"},{ "name" : "taxi", "status": "soso"}]"
从文本中,它是一个类似 json 格式的字符串,我怎样才能只提取名称值并输入到数组中
期望的输出 ==> [汽车、公共汽车、出租车]
我是 ruby 的新手,我对代码块不熟悉...如何获取 json 格式文本中的所有关键元素?
text= "[{ "name" : "car", "status": "good"},
{ "name" : "bus", "status": "bad"},{ "name" : "taxi", "status": "soso"}]"
从文本中,它是一个类似 json 格式的字符串,我怎样才能只提取名称值并输入到数组中
期望的输出 ==> [汽车、公共汽车、出租车]
您需要先解析 JSON 数据:
require('json')
text = '[{ "name" : "car", "status": "good"}, { "name" : "bus", "status": "bad"},{ "name" : "taxi", "status": "soso"}]'
data = JSON.parse(text)
然后你可以简单地收集物品:
p data.collect { |item| item['name'] }
如果您没有每个项目的名称,并且您想要一个默认值:
p data.collect { |item| item.fetch('name', 'default value') }
如果你想跳过它们:
p data.collect { |item| item['name'] }.compact