Я хочу изменить глубокие поля в redux-form
с this.props.change
в redux-form V6
.
Вот мой mapStateToProps
:
function mapStateToProps(state) {
const {recipient_type, filters} =
formValueSelector('form_wizard')(
state, 'filters.recipient_type' ,'filters');
return {
recipient_type,
filters
}
}
и вот мой componentDidMount
(где я хочу программно изменить глубокое поле)
componentDidMount() {
if (!this.props.recipient_type) {
this.props.change("filters.recipient_type}",
someThing);}
}
Результат для this.props.recipient_type
не определен.
Как я могу изменить глубокое поле с помощью this.props.change()
в redux-form
?
Спасибо