221124 - TIL

Junho Yun·2022년 11월 24일
0

TIL

목록 보기
15/81
post-thumbnail

const storage = getStorage();
  let noImgUrl = "";
  getDownloadURL(ref(storage, 'imgfile/noImages.jfif'))
    .then((url) => {
      noImgUrl = url;
      console.log("noImgUrl 는", noImgUrl)
    })
    .catch((error) => {
      console.log(error)
      // Handle any errors
    });

파이어 베이스에서 특정 파일 훔쳐오기 문법은 잘 모르겠고 파이어베이스에서 이렇게 하라고 합니다.

url방식으로 훔쳐옵니다. 이걸로 이미지 없을 때 대용으로 사용할 이미지를 가져옵니다.


if (cmtObj.petphoto === undefined) {
      cmtObj.petphoto = noImgUrl;
    }
    

이미지 할당 안되있으면
아까 가져왔던 이미지로 대체합니다 끝~

const imgButton = document.getElementById("image");
  imgButton.value = "";

인풋 파일 테크 초기화 방법

profile
의미 없는 코드는 없다.

2개의 댓글

comment-user-thumbnail
2022년 11월 25일

쉽게쉽게 하시는것같은 !!! ㅎㅎ

답글 달기
comment-user-thumbnail
2022년 11월 25일

역시 대장님 최고

답글 달기