提交表单后如何专注于特定的表单字段?
已经尝试过的事情:
1.
dispatch(focus('fieldRefName'))
2.
componentWillReceiveProps = (nextProps) => {
if (nextProps.submitting) {
this.refs.fieldRefname.focus()
}
}
我也想在提交后清理表单。
redux-form 版本:3.0.12
提交表单后如何专注于特定的表单字段?
已经尝试过的事情:
1.
dispatch(focus('fieldRefName'))
2.
componentWillReceiveProps = (nextProps) => {
if (nextProps.submitting) {
this.refs.fieldRefname.focus()
}
}
我也想在提交后清理表单。
redux-form 版本:3.0.12