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 = "";
인풋 파일 테크 초기화 방법
쉽게쉽게 하시는것같은 !!! ㅎㅎ