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
- 안드로이드빌드에러
- Filter
- 스크롤이벤트
- materialicons
- 상속
- app:compiledebugkotlin
- reactnative
- 배열중복요소제거
- javascript
- supabase 페이지네이션
- 이진탐색
- 타입스크립트
- set
- 리액트네이티브아이콘
- 슬라이딩윈도우
- TS
- interface
- mainapplication.kt
- Spring
- generic
- async
- 페이지네이션
- meatadata
- map
- 글또10기
- Next.js
- react
- extends
- array
- app.post
Archives
- Today
- Total
목록File Upload (1)
rhanziy
React - image file 업로드 및 preview 구현
firebase로 sso기능 만들고 firestore에 사진+트윗 올리는 기능 만드는 중. image file 업로드와 preview 구현 코드. 사진 저장은 firestore에다 할 것이니 조금만 기다리세요. file 업로드 처리, 미리보기 코드 const [ attachment , setAttachment ] = useState(); const onFileChange = (e) => { const { files } = e.target; const theFile = files[0]; const reader = new FileReader(); reader.onloadend = (e) => { const { result } = e.currentTarget; setAttachment(result); } re..
React
2023. 2. 9. 17:49