useRef フックは、再レンダリングを行わずにレンダリング間で値を保持するために使用される組み込みの React フックです。これは、DOM 要素 と直接やり取りするため、およびレンダリング間で保持する必要があるが必ずしも再レンダリングをトリガーする必要はない値を保存するためによく使用されます。
useRef フックは主に 2 つの目的に使用されます。
const myRef = useRef(initialValue);
useRef によって返される参照オブジェクトには、実際の値が保存される現在のプロパティがあります。
const MyComponent = () => { const inputRef = useRef(null); const focusInput = () => { // Access the DOM node and focus it inputRef.current.focus(); }; return ( <div> <input ref={inputRef} /> <button onClick={focusInput}>Focus Input</button> </div> ); };
const TimerComponent = () => { const countRef = useRef(0); const increment = () => { countRef.current++; console.log(countRef.current); // This will log the updated value }; return ( <div> <p>Current count (does not trigger re-render): {countRef.current}</p> <button onClick={increment}>Increment</button> </div> ); };
const ScrollToTop = () => { const topRef = useRef(null); const scrollToTop = () => { topRef.current.scrollIntoView({ behavior: 'smooth' }); }; return ( <div> <div ref={topRef}> <ol> <li> <strong>Storing Previous State</strong>: If you need to track the previous value of a prop or state value. </li> </ol> <pre class="brush:php;toolbar:false"> const PreviousState = ({ count }) => { const prevCountRef = useRef(); useEffect(() => { prevCountRef.current = count; // Store the current value in the ref }, [count]); return ( <div> <p>Current Count: {count}</p> <p>Previous Count: {prevCountRef.current}</p> </div> ); };
複雑な値の再レンダリングの回避
: 再レンダリングをトリガーする必要のない大きなオブジェクトまたは複雑なデータ構造がある場合、useRef はコンポーネントのコンポーネントに影響を与えることなくそれを保存できます。パフォーマンス。間隔またはタイムアウトの追跡: タイムアウトまたは間隔の ID を保存し、後でクリアできます。
const myRef = useRef(initialValue);
Feature | useRef | useState |
---|---|---|
Triggers re-render | No (does not trigger a re-render) | Yes (triggers a re-render when state changes) |
Use Case | Storing mutable values or DOM references | Storing state that affects rendering |
Value storage | Stored in current property | Stored in state variable |
Persistence across renders | Yes (keeps value across renders without triggering re-render) | Yes (but triggers re-render when updated) |
これは、useRef がフォーム検証に使用され、入力フィールドが無効な場合に焦点を当てた例です。
import React, { useRef, useState } from 'react'; const FormComponent = () => { const inputRef = useRef(); const [inputValue, setInputValue] = useState(''); const [エラー、setError] = useState(''); const validateInput = () => { if (inputValue === '') { setError('入力を空にすることはできません'); inputRef.current.focus(); // 入力要素にフォーカスを当てる } それ以外 { setError(''); } }; 戻る ( <div> {エラー && <p>
useRef フックは、React で可変値や直接 DOM 操作を扱うのに非常に便利です。フォーム要素を操作しているか、以前の状態を追跡しているか、サードパーティのライブラリと対話しているかに関係なく、useRef はクリーンで効率的なソリューションを提供します。 useRef を使用すると、不必要な再レンダリングをトリガーせずに永続性を維持できるため、パフォーマンス重視の操作に最適です。
以上がReact の useRef フックをマスターする: DOM と可変値の操作の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。