最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React: controlled inputs in functional components using useState - Stack Overflow

programmeradmin2浏览0评论

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 0
Add a ment  | 

1 Answer 1

Reset to default 11

You 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} />
    );
}
发布评论

评论列表(0)

  1. 暂无评论