У меня есть начальная функция, которая срабатывает, когда мое приложение запускается и пытается загрузить реальное изображение в хранилище.Я также пробовал строки, но не повезло.
Js:
let fileName;
let storageRef;
const imageFile = "./images/200.jpg"
//const imageUpload = storage.ref(`images/${imageFile.name}`).putString(imageFile)
fileName = '200.jpg';
storageRef = storage.ref(`images/${fileName}`);
const imageUpload = storageRef.put(imageFile);
imageUpload.on(
'state_changed',
(snapshot) => {
//process fun here
console.log(snapshot);
},
(error) => {
//error fun here
console.log(error);
},
() => {
storage
.ref('images')
.child(imageFile.name)
.getDownloadURL()
.then((url) => {
console.log(url);
});
}
);