Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

102
Visualizações
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 Respostas
Responde à pergunta

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 Relatório

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 Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda