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

142
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar

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 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