일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
Tags
- async/await
- RTK Query
- recoil
- dfs
- Jest
- tailwind
- 반공변성
- TS
- CORS
- React
- map
- app router
- 공변성
- webpack
- MSA
- 인터섹션
- useAppDispatch
- 인증/인가
- 무한 스크롤
- 결정 알고리즘
- autosize
- 투포인터
- 태그된 유니온
- 타입 좁히기
- Promise
- 호이스팅
- ESlint
- 리터럴 타입
- SSR
- CI/CD
Archives
- Today
- Total
목록useState vs useRef (1)
짧은코딩
제어, 비제어 컴포넌트
제어 컴포넌트폼 데이터가 React 컴포넌트의 state에 의해 제어상태(state)와 입력 필드가 동기화-예시 코드function ControlledInput() { const [value, setValue] = useState(''); return ( setValue(e.target.value)} /> );}상태 변경 시 컴포넌트 리렌더링반응형 상태 관리비제어 컴포넌트DOM 자체에서 폼 데이터를 다룸ref를 사용해 DOM 요소에 직접 접근-예시 코드function UncontrolledInput() { const inputRef = useRef(null); const handleSubmit = () => { console.log(inputRef.current.val..
개발
2025. 3. 28. 20:01