Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Spacer
- SCSS forward
- netlify redirect
- SCSS import
- 폼 입력 바인딩
- SCSS extend
- git 같은계정 다른 컴퓨터
- KDT 프로그래머스 데브코스 프론트엔드
- 쌓임맥락
- Vue
- vuex map
- 고양이 사진 검색기
- 프로그래머스 K_Digital Training
- 프로그래머스 프론트엔드 데브코스
- 리스트 렌더링
- nextjs사용법
- vue mixin
- SCSS use
- KDT 프로그래머스
- 리액트
- 다른컴퓨터에서 git사용
- intersection opserver
- 프로그래머스 데브코스 프론트엔드
- flex
- 프로그래머스 데브코스
- postcss
- react next
- vue 지역 컴포넌트
- 이벤트 수식어
- vue 이벤트 수신
Archives
- Today
- Total
혼자 적어보는 노트
[React] useRef hook 본문
useRef
javascript에서는 getElementById, querySelector 와 같이 특정 DOM을 선택할 수 있는데
react 에서는 ref를 사용하여 특정 DOM을 선택 할 때 사용한다.
ref를 사용 할 때는 useRef라는 hook을 사용한다.
const inputRef = useRef();
<input ref={inputRef} />
이렇게 input에 ref를 useRef()로 만든 변수명을 넣어주면 사용 가능하다.
myInput을 console.log에 출력해보면
console.log(inputRef)
/*
{current: HTMLInputElement}
current: <input></input>
*/
위와 같이 current에서 input이 나타나며
myInput.current를 사용하면 해당 input에 접근이 가능하다.
+ Class component
myInput = React.createRef();
클래스 컴포넌트에서는 React.createRef()를 사용한다.
class Test extends Component {
inputRef = React.createRef();
onSubmit = (e) => {
e.preventDefault();
console.log(this.inputRef.current.value);
// current.value로 value값 추출
};
render() {
return (
<div>
<form className="add-form" onSubmit={this.onSubmit}>
<input
ref={this.inputRef}
type="text"
className="add-input"
/>
</form>
</div>
);
}
}
'React' 카테고리의 다른 글
[React] input에 숫자만 출력하기 / 한글입력 오류 해결 (0) | 2021.11.26 |
---|---|
[React] react hooks를 사용한 ScrollToTop / 페이지 이동 시 스크롤 상단으로 초기화 (0) | 2021.11.25 |
[React] state async로 인한 오류 useEffect로 처리 (0) | 2021.11.18 |
[React] Tab Menu 구현 해보기 (0) | 2021.11.17 |
React에서 Redux사용 2 - useSelector / useDispatch hook (0) | 2021.11.16 |
Comments