Search system with large json

Anyone can tell me how to make a search system with JSON file. How to get textbox(entered in text) value from json list with large number of list without lagging.

For example :- We have a json list with length of 1000
And when user searched a text and get string value from json

Please help me :pleading_face::pleading_face::pleading_face:

Use this extension to convert into list

But how we search for a string value from json

Can you post a sample of your json ?

1 Like

Is it possible to guide you without seeing your json structure?? Post your json or sample json either as schema or url

1 Like

Here is test sample :

[
{
      "title":"My favourite kodular",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },

{
      "title":"Google",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },
{
      "title":"Google2",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },
{
      "title":"Here is my title1",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },
{
      "title":"Here is my title2",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },
{
      "title":"Here is my title3",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },
{
      "title":"Here is my title4",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },
{
      "title":"Here is my title5",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },
{
      "title":"Here is my title6",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },
{
      "title":"I love kodular",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },
{
      "title":"I like kodular",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },
{
      "title":"Here is my title",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },
{
      "title":"Here is my title",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },
{
      "title":"Here is my title",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },
{
      "title":"Here is my title",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },
{
      "title":"Here is my title",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },
{
      "title":"Here is my title",
      "image":"Myimage.jpg",
      "link":"Here is my link",
      "description":"here is title",
      "category":"Here is category",
      "pubDate":"Mon, 24 Jan 22"
   },
]

Here, I want to get title string value by searching.

If you found any mistake please let me :slightly_smiling_face::slightly_smiling_face:

Try something like this … using [Free] Json To Dictionary Extension

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.