📜  react hook form clear form - Javascript代码示例

📅  最后修改于: 2022-03-11 15:02:19.751000             🧑  作者: Mango

代码示例1
// ❌ avoid the following with deep nested default values
const defaultValues = { object: { deepNest: { file: new File() } } };
useForm({ defaultValues });
reset(defaultValues); // share the same reference

// ✅ it's safer with the following, as we only doing shallow clone with defaultValues
useForm({ deepNest: { file: new File() } });
reset({ deepNest: { file: new File() } });