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

0

106
Views
Problema de reconocimiento de voz en estado de reacción

Tengo un problema con una biblioteca react-speech-recognition. newcontent es un estado cuando modifico este estado dentro de useeffect print undefined y también quiero modificar este estado para la transcripción también 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 useEffect separados. Uno para actualizar el estado y otro para realizar un seguimiento y hacer el console.log de la siguiente manera.

 // 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