Can't type in React input text field

后端 未结 8 2235
无人共我
无人共我 2020-12-02 11:56

I\'m trying my first bit of React.js and am stumped early on... I have the code below, which renders a search form into

. B
8条回答
  •  萌比男神i
    2020-12-02 12:28

    You haven't properly cased your onchange prop in the input. It needs to be onChange in JSX.

      
    

    The topic of passing a value prop to an , and then somehow changing the value passed in response to user interaction using an onChange handler is pretty well-considered in the docs.

    They refer to such inputs as Controlled Components, and refer to inputs that instead let the DOM natively handle the input's value and subsequent changes from the user as Uncontrolled Components.

    Whenever you set the value prop of an input to some variable, you have a Controlled Component. This means you must change the value of the variable by some programmatic means or else the input will always hold that value and will never change, even when you type -- the native behaviour of the input, to update its value on typing, is overridden by React here.

    So, you're correctly taking that variable from state, and have a handler to update the state all set up fine. The problem was because you have onchange and not the correct onChange the handler was never being called and so the value was never being updated when you type into the input. When you do use onChange the handler is called, the value is updated when you type, and you see your changes.

提交回复
热议问题