1. 安装
npm install jsonpath
2. 使用
1. 使用页面引入:
var jp = require('jsonpath');
2. 已存在的数据Object:
const Object = {
a.b.c.d: '11111'
}
3. newName list 结构组装的name:
const newName= 'a.b.c.d'
4. 使用方法:
var names = jp.query(Object, `$.${newName}`);
npm install jsonpath
1. 使用页面引入:
var jp = require('jsonpath');
2. 已存在的数据Object:
const Object = {
a.b.c.d: '11111'
}
3. newName list 结构组装的name:
const newName= 'a.b.c.d'
4. 使用方法:
var names = jp.query(Object, `$.${newName}`);
本文标题:jsonpath使用
本文链接:https://www.haomeiwen.com/subject/luwzidtx.html
网友评论