जब मैं ठोकर खाई तो मैं हुक डॉक्यूमेंटेशन से गुज़र रहा था useRef
।
उनका उदाहरण देख रहे हैं ...
function TextInputWithFocusButton() {
const inputEl = useRef(null);
const onButtonClick = () => {
// `current` points to the mounted text input element
inputEl.current.focus();
};
return (
<>
<input ref={inputEl} type="text" />
<button onClick={onButtonClick}>Focus the input</button>
</>
);
}
... ऐसा लगता है जैसे इसके useRef
साथ बदला जा सकता है createRef
।
function TextInputWithFocusButton() {
const inputRef = createRef(); // what's the diff?
const onButtonClick = () => {
// `current` points to the mounted text input element
inputRef.current.focus();
};
return (
<>
<input ref={inputRef} type="text" />
<button onClick={onButtonClick}>Focus the input</button>
</>
);
}
मुझे रेफरी के लिए हुक की आवश्यकता क्यों है? क्यों useRef
मौजूद है?