admin管理员组文章数量:1342630
I'm trying to write a functional ponent that includes an <input>
, but I'm getting the "A ponent is changing an uncontrolled input of type text to be controlled." error and can't figure out what I'm doing wrong.
I've reduced my code to this, which reproduces the problem:
function Input({ value, onChange }) {
const [text, setText] = useState(value);
function update(event) {
setText(event.target.value);
if (typeof onChange === "function") {
onChange(event.target.value);
}
}
return (
<input type="text" value={text} onChange={update} />
);
}
I'm not quite sure how to use useState
here to make this a controlled element—because this is clearly not working :(
What am I doing wrong?
I'm trying to write a functional ponent that includes an <input>
, but I'm getting the "A ponent is changing an uncontrolled input of type text to be controlled." error and can't figure out what I'm doing wrong.
I've reduced my code to this, which reproduces the problem:
function Input({ value, onChange }) {
const [text, setText] = useState(value);
function update(event) {
setText(event.target.value);
if (typeof onChange === "function") {
onChange(event.target.value);
}
}
return (
<input type="text" value={text} onChange={update} />
);
}
I'm not quite sure how to use useState
here to make this a controlled element—because this is clearly not working :(
What am I doing wrong?
Share asked Mar 11, 2019 at 17:59 Nicolás SanguinettiNicolás Sanguinetti 2884 silver badges9 bronze badges 01 Answer
Reset to default 11You are most likely not passing in a value
prop to your Input
ponent, which will cause text
to be undefined
initially, and when you set the text in update
, it bees controlled.
You can change your code to pass in a value
prop to Input
every time you use it, or give value
a default value of an empty string.
function Input({ value = "", onChange }) {
const [text, setText] = useState(value);
function update(event) {
setText(event.target.value);
if (typeof onChange === "function") {
onChange(event.target.value);
}
}
return (
<input type="text" value={text} onChange={update} />
);
}
本文标签: javascriptReact controlled inputs in functional components using useStateStack Overflow
版权声明:本文标题:javascript - React: controlled inputs in functional components using useState - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743690067a2522559.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论