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

165
Vistas
ReactJs, storing user inputs as a new object in an empty array

I'm trying to store in an empty array a user input and a unique id as an object.

So I have:

const [weight, setWeight] = useState([]);

that I want to fill with this function:

const submitWeight = () => {
    setWeight([{ value: inputWeight, id: uuidv4() }, ...weight]); // this one.
    setDefaultMessageWeight("");
    closedClass();
  };

Any ideas? Thank you!

about 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

Here is an example of how you can access a rendered input element using ref inside your component.

import { useRef, useState } from "react";

export default function App() {
  const [weight, setWeight] = useState([]);
  const inputRef = useRef(null);

  const submitWeight = () => {
    let inputWeight = inputRef.current.value;
    setWeight([{ value: inputWeight, id: uuidv4() }, ...weight]); 
    // ... 
  };

  return (
    <div>
      <input ref={inputRef} />

      <button onClick={submitWeight}>Submit</button>

      {weight.map(({ value }, index) => (
        <p>
          Weight #{index} is {value}
        </p>
      ))}
    </div>
  );
}
about 4 years ago · Santiago Trujillo 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