如何等到图片上传到 Ionic 2 中的 Firebase 存储



我试图等到使用加载器将图像上传到Firebase存储上,但它无法正常工作

我像这样编写代码,但我不知道我的错误在哪里,为什么在上传过程之前显示警报。

private uploadPhoto(): void {
let loader = this.loadingCtrl.create({
content: ""
})
loader.present().then(_=>{
this.myPhotosRef.child(this.generateUUID()).child('myPhoto.JPEG')
.putString(this.myPhoto, 'base64', { contentType: 'image/JPEG' })
.then((savedPicture) => {
this.myPhotoURL = savedPicture.downloadURL;
this.afd.list('/Images/').push({
nID: this.appService.id,
url: this.myPhotoURL,
date: new Date().toISOString()
});
});
}).then(_=>{
alert("image uploaded and stored in database");
loader.dismiss();
})
}

我通过在"this.myPhotosRef.child..."之前添加"return"来获得解决方案。

相关内容

  • 没有找到相关文章

最新更新