使用Formik 2.01RC,从onClick事件成功开始尝试使用resetForm。
如果我将具有reset属性的按钮放在resetForm onClick事件上,则它会起作用
<div className="sendAgain" onClick={this.sendCodeAgain.bind(this, resetForm)}>
<IntlMessages id="login.resendCode" />
</div>
更新:带有sendCodeAgain:
sendCodeAgain(resetForm) {
const { getCode, auth } = this.props
resetForm();
getCode(auth.phone);
}