해결된 질문
21.12.03 10:28 작성
·
301
답변 1
1
2021. 12. 03. 11:06
useRef는 html tag의 reference를 참조할 때에만 쓰는 것이 아닙니다.
current에 언제나 최신정보가 반영되길 기대하면서,
동시에 current의 값이 변경되더라도 재랜더링을 일으키지 않길 원하는 모든 경우에
어떤 데이터든 넣을 수 있습니다.
https://reactjs.org/docs/hooks-reference.html#useref
Keep in mind that useRef
doesn’t notify you when its content changes. Mutating the .current
property doesn’t cause a re-render. If you want to run some code when React attaches or detaches a ref to a DOM node, you may want to use a callback ref instead.
2021. 12. 03. 11:49
그렇군요! 공식문서를 꼼꼼히 읽어봐야겠네요. 답변해주셔서 감사합니다 :D