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

204
Vistas
How to access values of state in other function

How can I use the value of state x in handleClick function to show an alert of input value in state x using Function component?

import React, { useState } from "react";
import "./App.css";

function About() {
  const [state, setState] = useState({
    x: "",
    output: [],
  });
  //for onChange Event
  const handleChnage = (e) => {
    setState({ ...state, [state.x]: e.target.value });
    console.log(e.target.value);
  };
  //for onClick Event
  const handleClick = () => {
    alert(state.x);
  };

  return (
    <>
      <h1>This is about about </h1>
      <input
        placeholder="Enter a number"
        value={setState.x}
        onChange={handleChnage}
      />
      <button onClick={handleClick}>get Table</button>
    </>
  );
}

export default About;
about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

It should be x instead of state.x

const handleChnage = (e) => {
  setState({ ...state, x: e.target.value })
}

and the value should be state.x here instead of setState.x:

<input
  placeholder="Enter a number"
  value={state.x}
  onChange={handleChnage}
/>

Remember on hooks, the first parameter is the value, the second parameter is the setter function.

about 4 years ago · Juan Pablo Isaza Denunciar

0

Two issues should be fixed:

  1. You do not need the computed value [state.x], it should be just x.
setState({ ...state, x: e.target.value });
  1. The value for the input should be state.x not setState.x
      <input
        placeholder="Enter a number"
        value={state.x}
        onChange={handleChnage}
      />

function About() {
  const [state, setState] = React.useState({
    x: "",
    output: []
  });
  //for onChange Event
  const handleChnage = (e) => {
    setState({ ...state, x: e.target.value });
    console.log(e.target.value);
  };
  //for onClick Event
  const handleClick = () => {
    alert(state.x);
  };

  return (
    <React.Fragment>
      <h1>This is about about </h1>
      <input
        placeholder="Enter a number"
        value={state.x}
        onChange={handleChnage}
      />
      <button onClick={handleClick}>get Table</button>
    </React.Fragment>
  );
}

ReactDOM.render(<About />, document.querySelector('.react'));
<script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<div class='react'></div>

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