我有一个单行 JSON 文件,我正在尝试迭代并寻找循环遍历它的最佳方式。
爆炸后,它看起来像:
{
"system": "Test",
"Continents": [
{
"Continent": {
"name": "Europe",
"location": "North"
},
"Continent": {
"name": "Australia",
"location": "South"
},
"Continent": {
"name": "Asia",
"location": "North"
}
}
]
}
首先,我使用以下内容加载 JSON,它成功加载了完整的 JSON。
File.open(json_file, 'r') do |file|
file.each do |line|
JSON.parse(line).each do |item|
## CODE TO ITERATE HERE
end
end
end
我不知道该怎么做是循环浏览该Continents
部分并提取相关记录。目标是循环并输出列表/表格/显示中的信息。
感谢您的帮助-如果我能澄清一下,请告诉我。