Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

106
Views
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 answers
Answer question

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 Report

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!