jsonPath排除字段

时间:2016-11-07 17:17:57

标签: node.js jsonpath

我希望获得除template字段之外的整个对象,无论级别如何。 这是我的目标:

{
            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/JSONPathhttps://github.com/dchester/jsonpath我无法弄清楚我该怎么做。

0 个答案:

没有答案