我正在尝试从 json 文件中获取一组对象,但我遇到了问题。
path.get("wgcTournaments.items")
我应该使用什么路径来获取项目中的所有项目(项目 0、项目 1、项目 2 ...)?
你能给我一个建议吗?
json示例
{
"wgcTournaments": {
"items": {
"jcr:primaryType": "nt:unstructured",
"item0": {
"jcr:primaryType": "nt:unstructured",
"test": "test",
"test1": "test1"
},
"item1": {
"jcr:primaryType": "nt:unstructured",
"test": "test",
"test1": "test1"
},
"item2": {
"jcr:primaryType": "nt:unstructured",
"test": "test",
"test1": "test1"
},
"item3": {
"jcr:primaryType": "nt:unstructured",
"test": "test",
"test1": "test1"
}
}
}
}
从项目对象中过滤项目的最佳方法,但我不明白如何使用 json 路径进行操作。