getDerivedStateFromProps
的意义是如此吧?大家实践当中都是怎么做的,会把 props 放到 state 里面统一管理状态还是依然通过const {xxx} = this.props
的方式拿数据?
1
triplelift 2018-08-06 00:42:55 +08:00 via iPhone 1
没用过 16 不过这个函数应该是用来代替 componentWillReceiveProps 的 可以思考下之前你使用这个函数的场景 这里的目的一般是基于 props 的内容有选择的更新 state 记住 props 与 state 是组件中独立的两个部分 二者可能有关联但必须分开管理
|