修改JSON的过滤接口,实现多层过滤

This commit is contained in:
Looly
2022-08-30 21:35:00 +08:00
parent f4fc7793eb
commit 0590793775
11 changed files with 330 additions and 116 deletions

View File

@@ -0,0 +1,32 @@
{
"store": {
"bicycle": {
"color": "red",
"price": 19.95
},
"book": [
{
"category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99,
"items": [
{
"name": "wujing001",
"age": 18
},
{
"name": "wujing002",
"age": 18
}
]
},
{
"category": "fiction02",
"author": "Evelyn Waugh02",
"title": "Sword of Honour02",
"price": 12.99
}
]
}
}