useRef推荐吗
来源:4-7 React 中 ref 的使用
蓝色西西
2021-05-12
老师,因为在function页面中写,无法使用this。所以没有用react中的ref,而使用了useref,请问老师您推荐用useRef吗。 setInputValue(e.target.value) setInputValue(inputRef.current.value) 这两种用法,老师更推荐哪一种呢。
下面是主要的代码段。
function TodoList(props) {
const inputRef = useRef()
//当input输入框里面的值发生变化时,写入到inputValue中
function handleInputChange(e) {
const value = inputRef.current
console.log(value)
setInputValue(value)
}
写回答
2回答
-
setInputValue(e.target.value) 更好
012021-05-13 -
Dell
2021-05-13
不是不推荐使用的
00
相似问题