我想獲得整個對象,不包括template
字段,不管級別。 這是我的目標:jsonPath排除字段
{
sections:
[
{
name: "part1",
title: "Part I",
template: "Part I template",
children: [{
name: "1",
title: "part1.1",
template:"part1.1 template"
}, {
name: "2",
title: "part1.2",
template:"part1.2 template"
}]
},
{
name:"part2",
//...
}
]
}
我試圖https://github.com/s3u/JSONPath和https://github.com/dchester/jsonpath我不能弄明白我怎麼能做到這一點。
如果u想ü可以簡單地使用,而不是使用jsonpath – kgangadhar