250x250
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
- 스프링부트와AWS로혼자구현하는웹서비스
- AWS RDS
- DDD
- 네트워크
- aop
- SQL쿡북
- 알고리즘분석
- mysql
- react
- java
- 이팩티브 자바
- 기술면접
- 인프런백기선
- 이펙티브 자바
- 클린코드
- MariaDB
- 자바
- 도메인 주도 개발 시작하기
- 이펙티브자바
- vue.js
- jpa
- 자바스터디
- CleanCode
- 인덱스
- 혼공SQL
- 자바예외
- 인프런김영한
- AWS
- 알고리즘
- 자료구조
Archives
- Today
- Total
기록이 힘이다.
[React] firebase storage 파일 업로드 본문
728x90
https://developer-talk.tistory.com/567
https://forum.ionicframework.com/t/firebase-storage-unauthorized-due-to-storage-rule/191471
/**
* 파일 업로드
*/
const handleChange = (event) => {
setFile(event.target.files[0]);
}
const handleUpload = () => {
if (!file) {
alert("Please upload an image first!");
}
const storageRef = ref(storage, `/manmul/${file.name}`);
// progress can be paused and resumed. It also exposes progress updates.
// Receives the storage reference and the file to upload.
const uploadTask = uploadBytesResumable(storageRef, file);
uploadTask.on(
"state_changed",
(snapshot) => {
const percent = Math.round(
(snapshot.bytesTransferred / snapshot.totalBytes) * 100
);
// update progress
setPercent(percent);
},
(err) => console.log(err),
() => {
// download url
getDownloadURL(uploadTask.snapshot.ref).then((url) => {
console.log(url);
});
}
);
};
<input type="file" onChange={handleChange} accept="/image/*" />
<button onClick={handleUpload}>Upload to Firebase</button><br/>
'React' 카테고리의 다른 글
Module not found: Error: Package path . is not exported from package C:\companyproject\frontend\node_modules\firebase (0) | 2023.02.08 |
---|---|
[React] react-toastify (0) | 2023.02.07 |
[React] checkbox에서 하나만 선택 (0) | 2023.02.01 |
[React] 다른 함수에 있는 요소 불러오기 (0) | 2023.01.31 |
React 카카오(Daum) 주소 찾기 API 사용하기 (0) | 2023.01.31 |