标签: reactjs
我知道当组件接收新道具时会调用componentWillReceiveProps(newProps)。我的想法是,我会设置一些状态或根据这些新道具做一些事情。我最初的期望是在此方法完成后this.props将设置为newProps,但似乎并非如此。似乎this.props对象永远不会改变。
componentWillReceiveProps(newProps)
this.props
newProps
那么可以得出结论this.props是不可变的吗?