当前,在我们的项目中,我们正在使用componentWillReceiveProps
方法来处理道具。
componentWillReceiveProps(nextprops) {
if(nextprops.userData != this.props.userData) {
//...do something
}
}
现在,这里的问题是还需要与employeeData
结合使用的其他一些道具userData
。有什么方法可以在这里完成,或者有其他生命周期方法可以帮助完成此任务?
编辑:我正在使用类组件,在这里不能使用功能组件。