NextJS:未捕获的类型错误:无法读取未定义的属性(读取‘属性’)
2021-11-14
6258
每当我尝试在以下函数中将
type
属性添加到 NextJS 中的
<input>
标签时,都会出现以下错误。
const InputComponent = ({value, prefix, id, placeholder, autoCompleteLabel}: InputComponentProps) => {
const [focused, setFocused] = useState(false);
let ref = useRef<HTMLInputElement>(null)
const onClick = () => {
setFocused(true);
};
const onBlur = () => {
setFocused(false);
};
useEffect(() => {
if (focused)
ref.current?.focus()
else
ref.current?.blur()
}, [focused]);
return (
<div className="group flex flex-col border p-2 w-full focus-within:border-black border-gray-300 transition-all space-y-1" onClick={onClick}>
<label htmlFor={id} className={"text-md"}>{value}</label>
<div className={"flex flex-row"}>
<span className={"text-gray-500"}>
{prefix}
</span>
<input ref={ref} onBlur={onBlur} type={"tel"} id={id} autoComplete={autoCompleteLabel ? autoCompleteLabel : "off"} name={id} pattern={"[0-9]{10}"} maxLength={10} placeholder={placeholder ? placeholder : ""} className={"outline-none flex-grow " + ((prefix) ? "pl-2" : "")}/>
</div>
</div>
);
}
但是,只要我删除该属性,错误就会消失。我希望有人能帮我解决这个问题。
每个浏览器上的错误/警告都不同:
Chrome:
content.js:formatted:2942 Uncaught TypeError: Cannot read properties of undefined (reading 'attributes')
at Object.i [as checkAttributes] (content.js:formatted:2942)
at content.js:formatted:3141
at Object.y [as scanForm] (content.js:formatted:3143)
at y (content.js:formatted:4292)
at Object.validate (content.js:formatted:4235)
at content.js:formatted:4266
Safari:
没有错误或警告
Firefox:
nvalid HMR message: {"action":"sync","hash":"a3c905b1d9bff16a","warnings":[],"errors":[]}
Error: No router instance found.
You should only use "next/router" on the client side of your app.
但服务器上没有错误,这是一个客户端错误,这就是我能从浏览器控制台获得的所有信息。
2个回答
我猜是因为,它将其视为具有键值对的 json,
{"Key":"Value">
替换此,
<input type={"tel"} />
用这个,这肯定会起作用,
<input type="tel" />
这个问题很棘手, https://github.com/vercel/next.js/issues/6713 在这里您可以获得解决方案
Ashish Kamble
2021-11-14
看起来这是由 chrome 扩展程序引起的... 并且 HMR 消息是 Next.JS 中的一个错误,已报告
Chandraaditya
2021-11-24