JIYIK CN >

Current Location:Home > Learning > WEB FRONT-END > React >

Fix the value prop on input should not be null error in React

Author:JIYIK Last Updated:2025/03/15 Views:

The warning "value prop on input should not be null" is caused when we set the initial value of an input to null or override the initial value setting it to null, for example from an empty API response. Use a fallback value to solve this problem.

Fix the value prop on input should not be null error in React

Here is an example of how this can result in a warning.

export default function App() {
  // ⛔️ Warning: `value` prop on `input` should not be null.
  // Consider using an empty string to clear the component or `undefined` for uncontrolled components.

  return (
    <div>
      <input value={null} />
    </div>
  );
}

The problem in the above code sample is - we set the value attribute of the input field to null, which is not allowed.

We might also get the value of the input field from a remote API and set it to null.

To fix this, we must ensure that the value property on the input is never set to null by providing a fallback value.

import {useState} from 'react';

const App = () => {
  // 👇️ 将空字符串作为初始值传递
  const [message, setMessage] = useState('');

  const handleChange = event => {
    setMessage(event.target.value);
  };

  // ✅ 使用 fallback, 例如
  //  value={message || ''}

  return (
    <div>
      <input
        type="text"
        id="message"
        name="message"
        onChange={handleChange}
        value={message || ''}
      />
    </div>
  );
};

export default App;

We initialize the value of the state variable to an empty string instead of null.

This will silence the warning unless the state variable is set to null somewhere else in your code.

We have used a logical OR (||)operator that returns the value on the right if the value on the left is false (such as null).

This helps us ensure that the value attribute of the input field is never set to null.

If using uncontrolled input fields with refs, don't set valuethe attribute on the input at all, use defaultValue.

import {useRef} from 'react';

const App = () => {
  const inputRef = useRef(null);

  function handleClick() {
    console.log(inputRef.current.value);
  }

  return (
    <div>
      <input
        ref={inputRef}
        type="text"
        id="message"
        name="message"
        defaultValue="Initial value"
      />

      <button onClick={handleClick}>Log message</button>
    </div>
  );
};

export default App;

The example above uses an uncontrolled input. Note that the input field has no onChangeattributes or values ​​set.

We can pass an initial value to an uncontrolled input using the defaultValue property. However, this is not required and you can omit the prop if you don’t want to set an initial value.

When using uncontrolled input fields, we access the input using ref.

Each time the user clicks the button in the example, the value of the uncontrolled input is recorded.

We should not set the attribute on uncontrolled inputs ( onChangeinput fields without a handler) valuebecause this will make the input field immutable and we won't be able to type in it.

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

React Tutorial - Transferring Props

Publish Date:2025/03/16 Views:188 Category:React

React transfers Props. Props are generated when components are encapsulated. Components expose some properties (Props) to the outside world to complete some functions.

React Tutorial: Props Anti-Pattern

Publish Date:2025/03/16 Views:187 Category:React

React's Props anti-pattern, using Props to generate state in getInitialState is an anti-pattern - Anti-Pattern.

React Tutorial - Props Validation

Publish Date:2025/03/16 Views:102 Category:React

Props validation is a very useful way to use components correctly. It can avoid many bugs and problems as your application becomes more and more complex. In addition, it can make your program more readable.

Why do you need to bind event handlers in React Class Components?

Publish Date:2025/03/16 Views:60 Category:React

When using React, we must have come across control components and event handlers. We need to use `.bind()` in the constructor of the custom component to bind these methods to the component instance. As shown in the following code:

Solution to the error "does not contain a default export" in React

Publish Date:2025/03/16 Views:191 Category:React

When we try to use `default import` to import from a module that does not have a `default export`, we get a "does not contain a default export" error. To fix the error, make sure the module has named exports and wrap the import in curly braces, e.g.

Solve the Module not found: Can't resolve 'react-bootstrap' error

Publish Date:2025/03/16 Views:90 Category:React

To resolve the error "Module not found: Error: Can't resolve 'react-bootstrap'", make sure to install the react-bootstrap package by opening a terminal in the root directory of the project and running the command `npm install react-bootstrap bootstrap

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial