簡體   English   中英

Angular Firebase 存儲:等待照片上傳返回downloadURL

[英]Angular Firebase Storage: wait for photo upload to return downloadURL

我已經嘗試了一切,我覺得我快要失去理智了。 我正在使用 putString 將簽名照片作為 base64 上傳到 Firebase 存儲,並且我得到了 downloadURL 作為回報。 問題是有時它會返回空白字符串,因為上傳尚未完成,並且該方法繼續進行。 因此,當我嘗試通過按鈕調用此方法時,我必須單擊它 2 次或等待幾秒鍾。

async saveCanvas() {
const loading = await this.loadingController.create();
await loading.present();
var signature = this.signaturePad.toDataURL().slice(22);
this.signaturePhotoName = new Date().toJSON();
const fileStoragePath = `signatures/${this.signaturePhotoName}`;
const imageFireStorageReference = this.angularFireStorage.ref(fileStoragePath);
this.fireUploadTask = this.angularFireStorage.ref(fileStoragePath).putString(signature, 'base64', { contentType: 'image/png'});
this.fireUploadTask.snapshotChanges().pipe(
  finalize(() => {
    const downloadURL = imageFireStorageReference.getDownloadURL();
    downloadURL.subscribe(async url => {
      if(url) {
        this.uploadedSignaturePhotoPath = url;
        this.report.signature = this.uploadedSignaturePhotoPath;
        this.reportForm.get('_signature').setValue(this.uploadedSignaturePhotoPath);
        await loading.dismiss();
      }
    })
  })
).subscribe();}

async onSubmit() {
    if(!this.isCanvasBlank()) {
      this.saveCanvas().then(() => {
        if(this.report.signature != '') {
          if(this.reportForm.valid) {
            this.reportsService.postReport(this.report).subscribe(response => {
              console.log(response);
            })}
          else {
            console.log("need more info");
          }
        }
      });
    } else {
      alert("no signature!");
    }
  }

等待上傳完成putString ,然后 go 查詢下載 url getDownloadURL()

this.fireUploadTask = await this.angularFireStorage.ref(fileStoragePath)
     .putString(signature, 'base64', { contentType: 'image/png'});

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM