如何从中获取数据props并确保数据正确到达。我的问题是,在我的类组件中,我收到警报props,然后我想用警报呈现表格,道具设置异步,我想确保数据到达并且我将能够设置状态。下面是我不太好的尝试解决它,但不起作用(都console.log显示空数组):
componentDidMount() {
this.setState({
startDate: moment()
.subtract(30, 'days')
.startOf('day'),
endDate: moment().endOf('day'),
selectedSeverity: null,
isChecked: true,
});
if(this.state.tableAlerts.length === 0){
console.log('tableAlerts', this.state.tableAlerts)
console.log('householdAlerts', this.props.householdAlerts)
this.setState({ tableAlerts: this.props.householdAlerts })
}
}
慕容708150
倚天杖
相关分类