【发布时间】:2016-06-01 18:55:10
【问题描述】:
提交表单后如何关注特定的表单域?
已经尝试过的事情:
1.
dispatch(focus('fieldRefName'))
2.componentWillReceiveProps = (nextProps) => {
if (nextProps.submitting) {
this.refs.fieldRefname.focus()
}
}
我也想在提交后清理表单。
redux-form 版本:3.0.12
【问题讨论】: