以异步等待方式上传 Firebase 图片



async UPLOAD_IMAGES() {
      try {
        let self = this;
        var storageRef = firebase.storage().ref();
        var files = document.getElementById("photoupload").files;
        var file = files[0];
        // Create the file metadata
        var metadata = {
          contentType: "image/jpeg"
        };
        // Upload file and metadata to the object 'images/mountains.jpg'
        var uploadTask = storageRef
          .child(`${this.name}/` + file.name)
          .put(file, metadata);
        // Listen for state changes, errors, and completion of the upload.
        uploadTask.on(
          firebase.storage.TaskEvent.STATE_CHANGED, // or 'state_changed'
          function(snapshot) {
            // Get task progress, including the number of bytes uploaded and the total number of bytes to be uploaded
            var progress =
              (snapshot.bytesTransferred / snapshot.totalBytes) * 100;
            console.log("Upload is " + progress + "% done");
            switch (snapshot.state) {
              case firebase.storage.TaskState.PAUSED: // or 'paused'
                console.log("Upload is paused");
                break;
              case firebase.storage.TaskState.RUNNING: // or 'running'
                console.log("Upload is running");
                break;
            }
          },
          function(error) {
            // A full list of error codes is available at
            // https://firebase.google.com/docs/storage/web/handle-errors
            switch (error.code) {
              case "storage/unauthorized":
                // User doesn't have permission to access the object
                break;
              case "storage/canceled":
                // User canceled the upload
                break;
              case "storage/unknown":
                // Unknown error occurred, inspect error.serverResponse
                break;
            }
          },
          function() {
            // Upload completed successfully, now we can get the download URL
            uploadTask.snapshot.ref
              .getDownloadURL()
              .then(function(downloadURL) {
                console.log("File available at", downloadURL);
                self = downloadURL;
              });
          }
        );
      } catch (error) {
        console.log("ERR ===", error);
        alert("Image uploading failed!");
      }
    }

这是我上传图片的全部功能。我唯一的问题是它在这个函数中具有回调函数。

 function() {
            // Upload completed successfully, now we can get the download URL
            uploadTask.snapshot.ref
              .getDownloadURL()
              .then(function(downloadURL) {
                console.log("File available at", downloadURL);
                self = downloadURL;
              });
          } 

只有对于这部分,我才能获得异步等待功能?

你可以很好地在UploadTask上调用then(),如下所述: https://firebase.google.com/docs/reference/js/firebase.storage.UploadTask#then

此对象的行为类似于 Promise,并使用其快照进行解析 上传完成时的数据。

因此,您可以执行以下操作:

async UPLOAD_IMAGES() {
      try {
        let self = this;
        const storageRef = firebase.storage().ref();
        const files = document.getElementById("photoupload").files;
        const file = files[0];
        // Create the file metadata
        const metadata = {
          contentType: "image/jpeg"
        };
        const fileRef = storageRef
          .child(`${this.name}/` + file.name);
        const uploadTaskSnapshot = await fileRef.put(file, metadata);
        const downloadURL = await uploadTaskSnapshot.ref.getDownloadURL();
        self = downloadURL;
      } catch (error) {
        console.log("ERR ===", error);
        alert("Image uploading failed!");
      }
    }

如果有人需要使用 await/async 而不是回调来观察上传进度,则此代码有效:

try {
   await saveToFirebase();
   alert("Happy days!");
} catch (error) {
   alert("Sad days!");
}

async function saveToFirebase() {
   // Create promise.
   let promise = $.Deferred();
   // Set storage reference.
   let storageRef = firebase.storage().ref();
   // Se file path.
   let filepath = "your-path.txt";
   // Set content type.
   let metadata = {
      contentType: "text/plain",
      cacheControl: "no-cache, max-age=0"
   };
   // Start upload.
   let uploadTask = storageRef.child(filepath).putString(data, "raw", metadata);
   // Monitor state of upload operation.
   uploadTask.on(firebase.storage.TaskEvent.STATE_CHANGED, function(snapshot) {
      // Get task progress, including number of bytes uploaded and total number of bytes to be uploaded.
      let progress = (snapshot.bytesTransferred / snapshot.totalBytes);
      
      // Display progress to user.
   // Error during upload?
   }, function(error) {
      promise.reject(error);
   // Nope, upload succeeded.
   }, function() {
      promise.resolve();
   });
   // Return promise.
   return promise;
}

最新更新