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

140
Views
how can i access the async and await object properties outside of the function and then display it into a html table

beginner webdev here

i'm trying to display the relevant random user data as such in my react component into the below html table by acccessing the properties of the user object, however im not sure how to access them outside of the async function. I'm not even sure if i should be using async here haha. How if at all would i be able to do this?? i even tried making a whole new object insantiator but it wouldn't work.

Thanks!!

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

const UserTable = () => {
  const API_URl = "https://randomuser.me/api/";

  async function LoadTable() {
    const response = await fetch(API_URl);
    const data = await response.json();
    const person = data.results;
    console.log(person);
    return LoadTable;
  }

  LoadTable();

  return (
    <table>
      <tr>
        <th>name</th>
        <th>age</th>
        <th>gender</th>
      </tr>
    </table>
  );
};

export default UserTable;
about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

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

const UserTable = () => {
  const API_URl = "https://randomuser.me/api/";
  // declare state
  const [person, setPerson] = useState(null);

  // call `LoadTable` inside `useEffect` for safety
  useEffect(() => {
    async function LoadTable() {
      const response = await fetch(API_URl);
      const data = await response.json();
      const person = data.results;
      // setState
      setState(person);
    }
    LoadTable();
  }, [])
  
  // do something with `person` down here
  return (
    <table>
      <tr>
        <th>name</th>
        <th>age</th>
        <th>gender</th>
      </tr>
    </table>
  );
};

export default UserTable;
about 4 years ago · Juan Pablo Isaza Report

0

  1. Do not call LoadTable in render. Call it in an event handler or useEffect.
  2. Store the result in state.
  3. Wrap your async functions or functions that may throw an error in a try catch finally block.
  4. You can store loading state in component state.
  5. You can store error in state.
  6. Make sure you handle different scenarios and race conditions that may occur.
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!