-
Notifications
You must be signed in to change notification settings - Fork 656
How to search deep nested JSON
Andrey Gershun edited this page May 25, 2015
·
1 revision
Source: [StackOverflow] (http://stackoverflow.com/questions/30091572/search-deep-nested-json)
I am working on a solution where I need to search for an element in a deeply nested JSON by its id. I have been advised to use underscore.js which I am pretty new to.```js var test = { "menuInputRequestId": 1, "catalog":[ { "uid": 1, "name": "Pizza", "desc": "Italian cuisine", "products": [ { "uid": 3, "name": "Devilled chicken", "desc": "chicken pizza", }, // ... ] } ] }; ```After reading the documentation http://underscorejs.org/#find , I tried to implement the solution using find, filter and findWhere.
The issue I faced is that these functions check the top level of the JSON and not the nested properties thus returning undefined. I tried to use item.catalog && item.catalog.uid == 1; logic as suggested in a similar question Underscore.js - filtering in a nested Json but failed.
How can I find an item by value by searching the whole deeply nested JSON?
You can do it with AlaSQL SEARCH statement:
var res = alasql('SEARCH / * WHERE(uid=1) name FROM ?',[data]);
© 2014-2024, Andrey Gershun & Mathias Rangel Wulff
Please help improve the documentation by opening a PR on the wiki repo