Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

108
Vistas
How show display all data using fetch method in React.js

I am Beginning in Programming. Now am trying to show All data in the display using the fetch data method. But Couldn't show this.

import { useEffect, useState } from "react";

const useProducts = () => {
    const [items, setItems] = useState([]);
    useEffect(() => {
        fetch("https://damp-island-69804.herokuapp.com/inventory")
            .then(res => res.json)
            .then(data => setItems(data))
    }, [])
    return [items, setItems];
}
export default useProducts;

What's the problem with this code? Please Help.

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

please note res => res.json in your code should be res.json() as it is a function not property.

about 4 years ago · Juan Pablo Isaza Denunciar

0

Refer This example : https://www.freecodecamp.org/news/fetch-data-react/

  1. Use resp.json() instead of resp.json
  2. Check resp.ok if not throw exception. Then set the exception message in another state variable.
  3. If loader used, show and hide accordingly by using the setter.
  4. Add try and catch accordingly And do clean up in the finally block.
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda