`onChange`函数没有返回目标值。

huangapple go评论66阅读模式
英文:

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!

huangapple
  • 本文由 发表于 2023年6月8日 00:25:27
  • 转载请务必保留本文链接:https://go.coder-hub.com/76425361.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定