• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

104
Views
Speech recognition problem in react state

I have a problem with a library react-speech-recognition . newcontent is a state when modify this state inside useeffect print undefined and I also want modify this state for transcript also print undefined

const Room = () => {
let{
    transcript,
  } = useSpeechRecognition();
 
  const [newContent,setnewcontent]=useState('')
}
console.log(transcript)-->//here successful
 useEffect(() => {
console.log(transcript)-->//here undefined
    setnewcontent(transcript)  
console.log(setnewcontent)-->//here undefined  
},[])

about 3 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Use 2 separate useEffect. One to update the state and other to keep track on it and do the console.log as follows.

// This useEffect will trigger if any change detected in transcript variable
useEffect(() => {
    setnewcontent(transcript)    
},[transcript])

// This useEffect will trigger if any change detected in newContent state
useEffect(() => { 
    console.log(newContent)
},[newContent])
about 3 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error