我只是想了解为什么在应用程序中我有以下情况,下面是我的类组件构造函数:
constructor(props) {
super(props);
this.state = {
tableAlerts: props.householdAlerts,
initialAlerts: props.householdAlerts
}
console.log('householdAlerts', props.householdAlerts)
}
在渲染功能中我有:
const { householdAlerts } = this.props;
我的问题是在构造函数中我得到了空数组,但在render函数中我有数据。是否可以在构造函数中获取数据?
Qyouu
暮色呼如
慕姐8265434
相关分类