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

97
Vistas
How to get value of updated state immediatly in useEffect

In the following I am updating the value of a state and then trying to use it inside useEffect only but cannot get the value of the updated state can anyone help me regarding how can i get updated state immediately inside useEffect only

Thank you

    useEffect(() => {
                dispatch(setSecondaryInvName(barcodeData))
                console.log("secondaryInventoryName == ", secondaryInventoryName)
            }
    })
about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

you shouldn't and you cant.

first use useEffect like componentDidMount with []:

useEffect(() => {
    dispatch(setSecondaryInvName(barcodeData))
}, [])

then you should use useEffect like componentDidUpdate with [secondaryInventoryName]:

useEffect(() => {
    console.log("secondaryInventoryName == ", secondaryInventoryName)
}, [secondaryInventoryName])
about 4 years ago · Juan Pablo Isaza Denunciar

0

You can't get immediately updated value in useEffect instead of you have to make a dependency in useEffect whenever its value will update it will trigger. Like:

useEffect(() => {
            dispatch(setSecondaryInvName(barcodeData))
         
        }
},[])
 useEffect(() => {
            
            console.log("secondaryInventoryName == ", secondaryInventoryName)
        }
},[secondaryInventoryName])
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