我有这个
const CompA = () => {
let _input;
return (
<input ref={el => _input = el} type="text" />
);
}
和这个
const CompB = () => {
const _input = useRef(null);
return (
<input ref={_input} type="text" />
);
}
二_input
是input
标签的 ref 对象,我找不到它们之间的区别。
我的问题是:两者之间有什么区别_input
,哪个_input
更好?