We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
useRefもuseStateも、初期値に関数の実行結果を渡すと、レンダリングのたびに実行してしまう。遅延初期化関数を使うことで回避できる
useRef
useState
const testing = (log: string) => { console.log("初期化:" + log); return log; }; export const Test = () => { const [count, setCount] = useState(0); const testRef = useRef(testing("useRef:" + count)); const [testState] = useState(testing("useState:" + count)); const [testState2] = useState(() => testing("useState2:" + count)); return ( <div> <p>state:{count}</p> <p>testRef:{testRef.current}</p> <p>testState:{testState}</p> <p>testState2:{testState2}</p> <button onClick={() => setCount((prev) => prev + 1)}>click</button> </div> ); };
この例では、 const [testState2] = useState(() => testing("useState2:" + count));以外は、setCountのたびにtestingを実行する
const [testState2] = useState(() => testing("useState2:" + count));
ミュータブルなTHREEオブジェクトはuseStateで値を保持するべき
const [scene] = useState(() => new THREE.Scene());
The text was updated successfully, but these errors were encountered:
No branches or pull requests
useRef
もuseState
も、初期値に関数の実行結果を渡すと、レンダリングのたびに実行してしまう。遅延初期化関数を使うことで回避できるこの例では、
const [testState2] = useState(() => testing("useState2:" + count));
以外は、setCountのたびにtestingを実行するミュータブルなTHREEオブジェクトはuseStateで値を保持するべき
The text was updated successfully, but these errors were encountered: