文件名称:getbypath:通过路径获取JSON数据
文件大小:3KB
文件格式:ZIP
更新时间:2024-05-30 15:21:28
JavaScript
getbypath 按路径从JSON对象获取数据。 安装 npm install getbypath 用法 var getByPath = require('getbypath'); var obj = { foo: { bar: { baz: 'thedata', biz: ['one', 'two'] }}}; var bar = getByPath(obj, 'foo.bar.baz'); console.log(bar); console.log(getByPath(obj, 'foo.bar')); console.log(getByPath(obj, 'foo.bar.biz')); //produces the following output thedata { baz: 'thedata', biz: [ 'one', 'two' ] } [ 'one', 'two'
【文件预览】:
getbypath-master
----.gitignore(18B)
----README.md(949B)
----test()
--------unit.js(1KB)
----LICENSE(1KB)
----package.json(524B)
----lib()
--------getbypath.js(432B)