reactjs 使用react form hook时未捕获的运行时错误[关闭]

vm0i2vca  于 11个月前  发布在  React
关注(0)|答案(1)|浏览(189)

**已关闭。**此问题为not reproducible or was caused by typos。目前不接受回答。

这个问题是由错字或无法再重现的问题引起的。虽然类似的问题在这里可能是on-topic,但这个问题的解决方式不太可能帮助未来的读者。
3天前关闭。
Improve this question
我使用React form hook,如图所示

import { useForm } from "react-hook-form";
export const Form = () => {
    const {register, handelSubmit} = useForm();
    const onSubmit = (data) => {
        console.log(data);
    }
    return (
        <div>
            <h1>Helllo</h1>
            <form onSubmit={handelSubmit(onSubmit)}>
                <input type="text" placeholder="Full Name..." {...register("FullName")}/> <br/>
                <input type="text" placeholder="Email..." {...register("Email")}/> <br/>
                <input type="text" placeholder="Age..." {...register("Age")}/> <br/>
                <input type="password" placeholder="Password..." {...register("password")}/> <br/>
                <input type="password" placeholder="Confirm Password..."  {...register("ConfirmPassword")}/> <br/>
                <input type="submit"/>
            </form>
        </div>
    );
};

字符串
但我得到了一个空白页,有一些未捕获的错误,在控制台,我不明白。
控制台出错:


的数据

tv6aics1

tv6aics11#

你确定你使用的是来自“react-hook-form”的“提交提交”吗?我认为是某个地方的错别字导致了这个问题。如果是整个代码,那么我认为

相关问题