使用Fromik 2.01RC使用Formik重置表单

时间:2019-08-04 09:09:21

标签: reactjs formik

使用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);
  }

0 个答案:

没有答案