reactjsuse-effectreact-componentreact-lifecycle-hooks

React componentDidMount vs useEffect hooks for API call


When I am trying to make an API call using in useEffect hook (before the component did mount), somehow the state is not getting updated, hence I am getting an error Cannot read property of undefined.

But if I am converting the same logic to a Class component and making the API call in the componentDidMount function, the code works well.

Could anyone tell me why?

Using useEffect

import React from "react";
import axios from "axios";
import { useState, useEffect } from "react";

export default function Customers() {
  const [customers, setCustomers] = useState([]);

  useEffect(() => {
    axios
      .get("http://localhost:5000/customers")
      .then((res) => {
        const data = res.data;
        setCustomers(data);
      })
      .catch((err) => console.log(err));
  }, []);

  useEffect(() => {
    console.log(customers);
  }, [customers]);

  return (
    <div className="container-fluid d-flex flex-column align-items-center justify-content-center">
      <div className="top">Customers</div>
      <div className="tables">
        <table class="table table-striped table-hover">
          <thead>
            <tr>
              <th scope="col">Account No</th>
              <th scope="col">Name</th>
              <th scope="col">E-mail</th>
              <th scope="col">Balance</th>
            </tr>
          </thead>
          <tbody>
            {customers.data.map((customer) => ( // error on this line.
              <tr>
                <th scope="row">{customer.account_no}</th>
                <td>{customer.name}</td>
                <td>{customer.email}</td>
                <td>{customer.balance}</td>
              </tr>
            ))}
          </tbody>
        </table>
      </div>
    </div>
  );
}

Class Based Component

import React, { Component } from "react";
import axios from "axios";
import "./Customers.css";

export default class Customers extends Component {
  state = {
    customers: [],
  };

  componentDidMount() {
    axios
      .get("http://localhost:5000/customers")
      .then((res) => {
        res.data.sort();
        console.log(res.data);
        this.setState({ customers: res.data });
      })
      .catch((err) => console.log(err));
  }

  render() {
    return (
      <div className="container-fluid main w-75 my-4 d-flex flex-column align-items-center">
        <div className="top p-4 d-flex justify-content-center">
          Our Customers
        </div>
        <div className="tables w-100">
          <table class="table table-striped table-hover">
            <thead>
              <tr>
                <th scope="col">Account No</th>
                <th scope="col">Name</th>
                <th scope="col">E-mail</th>
                <th scope="col">Balance</th>
              </tr>
            </thead>
            <tbody>
              {this.state.customers.map((customer) => (
                <tr>
                  <th scope="row">{customer.account_no}</th>
                  <td>{customer.name}</td>
                  <td>{customer.email}</td>
                  <td>{customer.balance}</td>
                </tr>
              ))}
            </tbody>
          </table>
        </div>
      </div>
    );
  }
}


Solution

  • You are not setting state properly in useEffect hook. instead of setCustomers({data:data}); it should be just setCustomers(data);

    useEffect(() => {
        axios
          .get("http://localhost:5000/customers")
          .then((res) => {
            const data = res.data;
            setCustomers(data);
          })
          .catch((err) => console.log(err));
      }, []);
    

    Now because customers is an array, just map over customers instead of customers.data.map.

    customers.map((customer)=>{})
    

    So the final code will be

    import React from "react";
    import axios from "axios";
    import { useState, useEffect } from "react";
    
    export default function Customers() {
      const [customers, setCustomers] = useState([]);
    
      useEffect(() => {
        axios
          .get("http://localhost:5000/customers")
          .then((res) => {
            const data = res.data;
            setCustomers(data);
          })
          .catch((err) => console.log(err));
      }, []);
    
      useEffect(() => {
        console.log(customers);
      }, [customers]);
    
      return (
        <div className="container-fluid d-flex flex-column align-items-center justify-content-center">
          <div className="top">Customers</div>
          <div className="tables">
            <table class="table table-striped table-hover">
              <thead>
                <tr>
                  <th scope="col">Account No</th>
                  <th scope="col">Name</th>
                  <th scope="col">E-mail</th>
                  <th scope="col">Balance</th>
                </tr>
              </thead>
              <tbody>
                {customers.map((customer) => ( 
                  <tr>
                    <th scope="row">{customer.account_no}</th>
                    <td>{customer.name}</td>
                    <td>{customer.email}</td>
                    <td>{customer.balance}</td>
                  </tr>
                ))}
              </tbody>
            </table>
          </div>
        </div>
      );
    }