反应,更新/重置嵌套状态
我需要重置一个状态。我有:
console.log(this.state["status"].toBeDeleted) //0|22|15
我需要清空this.state [“ status”]。我已经尝试了
this.setstate
,但我没有管理。
谢谢
i need to reset a state. I have:
console.log(this.state["status"].toBeDeleted) //0|22|15
I need to empty this.state["status"].toBeDeleted
. I have tried with this.setState
but I didn't managed.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能会遇到这个问题,因为Tobedred是嵌套属性。您可以尝试以下固定状态,这应该有效:
希望这会有所帮助!
You might be running into this issue because toBeDeleted is a nested property. You can attempt the setState as following, which should work:
Hope this helps!