英文:
onChange function did not return the target value
问题
我正在尝试为文本区域组件创建onChange函数,但不知何故,当使用console.log甚至将其传递到有效负载时,它没有更新状态。而当我使用JSON.stringify时,值会更新到参数中。
英文:
I'm trying to create onChange function for TextArea component but somehow it didn't update the state when using console.log or even pass it to the payload. And when I use JSON.stringify the value is update to the parameter.
答案1
得分: 1
你应该像下面这样编写处理函数:
onChange={() => handleChangeModalWorkflow("note")}
希望对你有帮助!
英文:
You should write handler functions like below:
onChange={() => handleChangeModalWorkflow("note")}
Hope it works for you!
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论