Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.

Iterate over JSON with Root Node in JavaScript

In this guide, you'll learn how to identify and understand JSON responses with root nodes and eventually iterate over them using JavaScript in React.

Sep 29, 2020 • 6 Minute Read

Introduction

A large portion of a frontend developer's work includes working with JSON responses when integrating backend APIs in an app. JSON responses are often complex and difficult to comprehend in one go. However, their complex structure is justified in terms of demystifying the data returned to the frontend. Thus, you may receive a JSON response with a root node indicating what the corresponding object is about.

In this guide, you'll learn how to identify and understand JSON responses with root nodes and eventually iterate over them using JavaScript in React.

JSON With Root Node

Consider the following JSON file. You can find it at the dummy-json API documentation.

The below JSON file contains four nodes or properties: users, images, coordinates, and price. All the nodes are at the same level in the node tree, and you can verify this by accessing these properties. For instance, if you store this response in an object called resp, you can access the users and image properties like resp.users and resp.images. Hence, the given JSON does not contain a root node.

      {
  "users": [
    {
      "id": 0,
      "name": "Adam Carter",
      "work": "Unilogic",
      "email": "[email protected]",
      "dob": "1978",
      "address": "83 Warner Street",
      "city": "Boston",
      "optedin": true
    },
    {
      "id": 1,
      "name": "Leanne Brier",
      "work": "Connic",
      "email": "[email protected]",
      "dob": "1987",
      "address": "9 Coleman Avenue",
      "city": "Toronto",
      "optedin": false
    }
  ],
  "images": [
    "img0.png",
    "img1.png",
    "img2.png"
  ],
  "coordinates": {
    "x": 35.12,
    "y": -21.49
  },
  "price": "$59,395"
}
    

Let's modify the above JSON response so that it contains a root node. This means that to access these properties, you'll have to go a level down from how you were accessing it before.

      "data":{
    "users": [
        {
          "id": 0,
          "name": "Adam Carter",
          "work": "Unilogic",
          "email": "[email protected]",
          "dob": "1978",
          "address": "83 Warner Street",
          "city": "Boston",
          "optedin": true
        },
        {
          "id": 1,
          "name": "Leanne Brier",
          "work": "Connic",
          "email": "[email protected]",
          "dob": "1987",
          "address": "9 Coleman Avenue",
          "city": "Toronto",
          "optedin": false
        }
      ],
      "images": [
        "img0.png",
        "img1.png",
        "img2.png"
      ],
      "coordinates": {
        "x": 35.12,
        "y": -21.49
      },
      "price": "$59,395"
 }
    

Now your JSON response has a root node called data, and your properties will be accessed as resp.data.users, resp.data.images, and so on. The need for structuring JSON responses in this way is to understand what the entire object corresponds to. In a real-life scenario, you can imagine this response corresponding to sellers who are selling their products on an e-commerce website. The root node can then be sellers_product_1355, giving an idea of what the data is about. Now that you know all about JSON with root nodes, let's look at how you can iterate over it using JavaScript in React .

Iterating Over JSON With Root Node

Inside your React app, create a data.js file and export the above response as an object.

      export default {
"data":{
    ...
  }
}
    

Now you can import this object as a regular JavaScript object as if you were getting it from a backend API. Any JSON property will be accessed by first accessing the root node. Have a look a the following console logs to understand how these properties can be accessed

      import React from 'react';
import response from './data';

function App() {
  console.log('users: ',response.data.users);
  console.log('images: ',response.data.images);
  console.log('images: ',response.data.coordinates);
  console.log('price: ',response.data.price);
  return (
    <div className="App">
 
    </div>
  );
}

export default App;
    

Note that both images and users are arrays, so you can use the map() method in JSX to iterate over them as shown below. You can also use regular for loops.

      import React from 'react';
import logo from './logo.svg';
import './App.css';
import response from './data';

function App() {
  console.log('users: ',response.data.users);
  console.log('images: ',response.data.images);
  console.log('images: ',response.data.coordinates);
  console.log('images: ',response.data.price);
  return (
    <div className="App">
    {
      response.data.users.map(user=><><h1 key={user.id}>{user.name}</h1></>)
    }    
    {
      response.data.images.map(img=><><h1>{img}</h1></>)
    }    
    </div>
  );
}

export default App;
    

For the remaining properties, separately render them based on their data types, as shown below

      ...
   <p>{response.data.coordinates.x } {response.data.coordinates.y }</p>     
   <p><strong>{response.data.price}</strong></p>
...
    

Conclusion

Root nodes in JSON give you a better understanding of the response object. In cases where JSON responses contain similar data types, you can combine them into one and iterate through all of them together, but it largely depends on how your database is set up. The generalized approach is to access them through the root node individually and iterate over only those properties that can be iterated over (such as arrays and strings), as shown in this guide.