正文从这开始~
总览
当input
的值被初始化为undefined
,但后来又变更为一个不同的值时,会产生"A component is changing an uncontrolled input to be controlled"警告。为了解决该问题,将input
的值初始化为空字符串。比如说,value=https://www.it610.com/article/{message ||''}
。
文章图片
这里有个例子来展示错误是如何发生的。
import {useState} from 'react';
const App = () => {
// ? didn't provide an initial value for message
const [message, setMessage] = useState();
const handleChange = event => {
setMessage(event.target.value);
};
return ();
};
export default App;
上面代码的问题在于,
message
变量被初始化为undefined
,因为我们没有在useState
钩子中为其传递初始值。备用值 【React报错之react component changing uncontrolled input】解决该错误的一种方式是,如果
input
的值为undefined
,那么就提供一个备用值。import {useState} from 'react';
const App = () => {
const [message, setMessage] = useState();
const handleChange = event => {
setMessage(event.target.value);
};
// ?value=https://www.it610.com/article/{message ||''}return ();
};
export default App;
我们使用逻辑与(||)操作符,如果操作符左侧的为假值(比如说
undefined
),则返回其右侧的值。如果useState 另一种解决方案是,在message
变量的值存储为undefined
,我们将空字符串作为备用值进行返回。
useState
钩子中为state
变量传递初始值。import {useState} from 'react';
const App = () => {
// ? pass an initial value to the useState hook
const [message, setMessage] = useState('');
const handleChange = event => {
setMessage(event.target.value);
};
return ();
};
export default App;
在
useState
钩子中传递初始值可以避免警告,因为此时message
变量并没有从undefined
变更为一个值。引起警告的原因是,当
message
变量在没有值的情况下被初始化时,它会被设置为undefined
。传递一个像
value=https://www.it610.com/article/{undefined}
这样的属性,就等于根本没有传递value
属性。一旦用户在defaultValue 注意,如果你使用一个不受控制的input
中开始输入,value
属性就会被传递到input
表单,输入就会从不受控变为受控,这是不被允许的。
input
表单,你应该使用defaultValue
属性而不是value
。import {useRef} from 'react';
const App = () => {
const inputRef = useRef(null);
function handleClick() {
console.log(inputRef.current.value);
}return ();
};
export default App;
文章图片
上述示例使用了不受控制的
input
。注意input
表单上并没有设置onChange
或者value
属性。你可以使用当使用不受控制的defaultValue
属性来为不受控制的input
传递初始值。然而,这一步骤不是必要的,如果你不想设置初始值,你可以省略该属性。
input
表单时,我们使用ref
来访问input
元素。每当用户点击例子中的按钮时,不受控制的input
的值都会被记录下来。你不应该为不受控制的
input
设置value
属性,因为这将使input
表单不可变,你将无法在其中输入。推荐阅读
- React报错之`value` prop on `input` should not be null
- React报错之No duplicate props allowed
- React报错之Objects are not valid as a React child
- React报错之map() is not a function
- react高频面试题总结(一)
- React高频面试题合集(二)
- React报错之ref返回undefined或null
- React报错之Property 'X' does not exist on type 'HTMLElement'
- React报错之Cannot find name