jsonpath使用
2023-11-05 本文已影响0人
苏苡
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}`);