我正在开发我的反应原生应用程序。我正在使用反应原生日历。当新道具出现在屏幕上时,我想更改选定的议程日期。
我的代码:
componentWillReceiveProps(nextProps) {
if (this.props !== nextProps) {
//this.setState(nextProps);
this.setState({
newFinished: nextProps.finished,
newId: nextProps.id,
});
//console.log('Next props ' + JSON.stringify(nextProps));
if(nextProps.navigation.state.params.range !== undefined) {
//console.log('Pridem noter');
this.setState({
minDate: nextProps.navigation.state.params.range[0],
maxDate: nextProps.navigation.state.params.range[1],
selectedDay: nextProps.navigation.state.params.range[0]
});
setTimeout(() => {
this.onDayPress(nextProps.navigation.state.params.range[0]);
},200);
}
}
}
我不知道为什么选择的日子根本没有改变。虽然收到道具...
有没有人有类似的问题?