react-hook-form 里面如何改变单个字段的校验时机
比如email字段不需要在onChange的时候校验
就不要用useController钩子给的onChange去改值
相反,要用useFormContext给的setValue去改,然后setValue有个option是不触发校验
一句话版。想要不受全局校验模式影响,就手动接管字段的更新(sweatgrinning)
https://github.com/react-hook-form/react-hook-form/issues/9064
标签:form,校验,react,hook,字段,onChange From: https://www.cnblogs.com/it-Ren/p/17025334.html