jeswin
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2017
11:41 PM
Search through JSON
Hi,
Can we use queries to search through parsed JSON?
For Example:
from this i want to search free_shows where title is abc without using loop.
is it possible?
because for deep linking i can't search through json using for loop, it will take time to search over 100 or above shows or episodes
Can we use queries to search through parsed JSON?
For Example:
m.pJson = { "shows" : { free_shows : [ { "id" : 121, "title" : "xyz" }, { "id" : 122, "title" : "abc" }, { "id" : 123, "title" : "rst" } ] } }
from this i want to search free_shows where title is abc without using loop.
is it possible?
because for deep linking i can't search through json using for loop, it will take time to search over 100 or above shows or episodes