我有一个 JSON 和一个 jsonPath 字符串列表。我想从 JSON 中删除所有内容,只保留我拥有的 jsonPaths 列表。我正在使用Jayway 的 JsonPath库
说我的 jsonPaths 是:
$.c
$.b[?(@.name=='ironman')]
我的 JSON 是
{
"a":"1",
"b":[
{
"name": "ironman"
},
{
"name": "thor"
}
],
"c": {
"d":{
"e": "nested"
}
}
}
我希望我生成的 JSON 是
"b":[
{
"name": "ironman"
}
],
"c": {
"d":{
"e": "nested"
}
}
有什么简单的方法可以做到这一点吗?