【发布时间】:2020-02-09 11:53:16
【问题描述】:
我的 React 应用程序中有以下 Yup 配置:
const schema = yup.object().shape({
email: yup.string()
.email('E-mail is not valid!')
.required('E-mail is required!'),
password: yup.string()
.min(6, 'Password has to be longer than 6 characters!')
.required('Password is required!'),
tandc: yup.boolean()
.oneOf([true], "You must accept the terms and conditions")
})
我的表单看起来像这样(使用 Formik):
<Form>
<div className="form-group">
<label >Email
<Field type="email" name="email" className="form-control" />
</label>
<ErrorMessage name="email" component="div" className="invalid-feedback" />
</div>
<div className="form-group">
<label >Password
<Field type="password" name="password" className="form-control" />
</label>
<ErrorMessage name="password" component="div" className="invalid-feedback" />
</div>
<div className="form-group">
<Field type="checkbox" name="tandc" className="form-check-input" id="tandc" />
<ErrorMessage name="tandc" component="div" className="invalid-feedback" />
<label htmlFor="tandc" >I agree to the Terms and Conditions
</label>
</div>
<PrimaryButton label="Login" disabled={isSubmitting} type="submit">
Submit
</PrimaryButton>
</Form>
如果用户点击表单上的提交,Yup 会验证电子邮件和密码字段,但忽略复选框字段:
只有先选中然后取消选中条款和条件,才能使复选框验证生效。
如何使它工作,以便在用户仅单击提交按钮时显示错误消息?
【问题讨论】:
-
.required,我猜? -
我试过了,没区别
-
这个comment 说“如果你将它与 formik 一起使用,请确保你设置了 initialValues = {termsOfService: false}”
-
@GennadyDogaev 你是对的。我需要设置一个初始值,将其添加为答案,我会标记它。
标签: javascript reactjs formik yup