如何在 React 中更新父级的状态?
2022-08-29 23:05:12
我的结构如下所示:
Component 1
- |- Component 2
- - |- Component 4
- - - |- Component 5
Component 3
组件 3 应根据组件 5 的状态显示一些数据。
由于 props 是不可变的,我不能简单地将其状态保存在组件 1 中并转发它,对吗?是的,我已经读过关于Redux的文章,但我不想使用它。我希望有可能通过react来解决它。我错了吗?