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 | 31 |
Tags
- Next
- Default parameter
- Template literals
- Python #CodeUp
- es11
- BOJ
- Python #Baekjoon
- React Kakao map
- react
- 프로그래머스
- Redux
- es6
- HTML #CSS
- firebase
- CSS
- nextjs
- spread operation
- Nullish Coalescing Operator
- Hooks
- Python
- React #Hooks
- JavaScript
- 카카오맵 api
- HTML
- optional chanining
- css #html
- 카카오맵
Archives
- Today
- Total
거북이개발자
[React] 이미지 파일 읽기 본문
const onFileChange=(event)=>{
const {target : {files}}=event;
const theFile=files[0];
const reader=new FileReader();
reader.onloadend=(finishedEvent)=>{
};
reader.readAsDataURL(theFile);
};
1. new FileReader();
-데이터를 읽기 위하여 파일을 가리키는 File객체를 이용해 파일의 내요을 일고 컴퓨터에 저장하는 것을 가능하게 해준다.
2. .onloadend
-이벤트 핸들러로 이 이벤트는 읽기 동장이 끝났을때마다 발생.
3. .readAsDataURL()
-업로드된 결괏값을 URL로 표시
'React > React' 카테고리의 다른 글
[React] React에 카카오 지도(KakaoMap)API 적용하기 (1) | 2021.02.11 |
---|---|
[React] Spread Operator (0) | 2021.01.30 |
[React] React-Route-Dom (0) | 2021.01.27 |
[React] create, updeat, delete 구현 (0) | 2021.01.16 |
[React] 컴포넌트 제작, state, 이벤트 사용 (0) | 2021.01.14 |
Comments