Tải tệp xuống bằng Cloud Storage trên web

Cloud Storage cho Firebase giúp bạn tải các tệp xuống từ bộ chứa Cloud Storage do Firebase cung cấp và quản lý một cách nhanh chóng và dễ dàng.

Tạo tệp đối chiếu

Để tải một tệp xuống, trước tiên, hãy tạo một tệp tham chiếu trên Cloud Storage cho tệp bạn muốn tải xuống.

Bạn có thể tạo tệp đối chiếu bằng cách thêm đường dẫn con vào thư mục gốc của bộ chứa Cloud Storage, hoặc bạn có thể tạo tệp đối chiếu từ URL gs:// hoặc https:// hiện có tham chiếu đến một đối tượng trong Cloud Storage.

API mô-đun web

import { getStorage, ref } from "firebase/storage";

// Create a reference with an initial file path and name
const storage = getStorage();
const pathReference = ref(storage, 'images/stars.jpg');

// Create a reference from a Google Cloud Storage URI
const gsReference = ref(storage, 'gs://bucket/images/stars.jpg');

// Create a reference from an HTTPS URL
// Note that in the URL, characters are URL escaped!
const httpsReference = ref(storage, 'https://firebasestorage.googleapis.com/b/bucket/o/images%20stars.jpg');  

API không gian tên trên web

// Create a reference with an initial file path and name
var storage = firebase.storage();
var pathReference = storage.ref('images/stars.jpg');

// Create a reference from a Google Cloud Storage URI
var gsReference = storage.refFromURL('gs://bucket/images/stars.jpg');

// Create a reference from an HTTPS URL
// Note that in the URL, characters are URL escaped!
var httpsReference = storage.refFromURL('https://firebasestorage.googleapis.com/b/bucket/o/images%20stars.jpg');  

Tải dữ liệu xuống qua URL

Bạn có thể lấy URL tải xuống của một tệp bằng cách gọi phương thức getDownloadURL() trên một tệp tham chiếu trong Cloud Storage.

API mô-đun web

import { getStorage, ref, getDownloadURL } from "firebase/storage";

const storage = getStorage();
getDownloadURL(ref(storage, 'images/stars.jpg'))
  .then((url) => {
    // `url` is the download URL for 'images/stars.jpg'

    // This can be downloaded directly:
    const xhr = new XMLHttpRequest();
    xhr.responseType = 'blob';
    xhr.onload = (event) => {
      const blob = xhr.response;
    };
    xhr.open('GET', url);
    xhr.send();

    // Or inserted into an <img> element
    const img = document.getElementById('myimg');
    img.setAttribute('src', url);
  })
  .catch((error) => {
    // Handle any errors
  });

API không gian tên trên web

storageRef.child('images/stars.jpg').getDownloadURL()
  .then((url) => {
    // `url` is the download URL for 'images/stars.jpg'

    // This can be downloaded directly:
    var xhr = new XMLHttpRequest();
    xhr.responseType = 'blob';
    xhr.onload = (event) => {
      var blob = xhr.response;
    };
    xhr.open('GET', url);
    xhr.send();

    // Or inserted into an <img> element
    var img = document.getElementById('myimg');
    img.setAttribute('src', url);
  })
  .catch((error) => {
    // Handle any errors
  });

Tải dữ liệu xuống trực tiếp từ SDK

Từ phiên bản 9.5 trở lên, SDK sẽ cung cấp các hàm sau để tải xuống trực tiếp:

Khi sử dụng các hàm này, bạn có thể bỏ qua thao tác tải xuống từ một URL mà thay vào đó trả về dữ liệu trong mã của mình. Điều này cho phép kiểm soát quyền truy cập chi tiết hơn thông qua Quy tắc bảo mật của Firebase.

Cấu hình CORS

Để tải dữ liệu xuống trực tiếp trong trình duyệt, bạn phải định cấu hình bộ chứa Cloud Storage của mình để truy cập nhiều nguồn gốc (CORS). Bạn có thể thực hiện việc này bằng công cụ dòng lệnh gsutil mà bạn cài đặt tại đây.

Nếu bạn không muốn áp dụng các quy tắc hạn chế dựa trên miền (trường hợp phổ biến nhất), hãy sao chép JSON này vào tệp có tên cors.json:

[
  {
    "origin": ["*"],
    "method": ["GET"],
    "maxAgeSeconds": 3600
  }
]

Chạy gsutil cors set cors.json gs://<your-cloud-storage-bucket> để triển khai các hạn chế này.

Để biết thêm thông tin, hãy tham khảo tài liệu về Google Cloud Storage.

Xử lý lỗi

Có một số lý do có thể khiến lỗi xảy ra khi tải xuống, bao gồm tệp không tồn tại hoặc người dùng không có quyền truy cập vào tệp mong muốn. Bạn có thể xem thêm thông tin về lỗi trong phần Xử lý lỗi của tài liệu.

Ví dụ đầy đủ

Dưới đây là ví dụ đầy đủ về một tệp tải xuống có cách xử lý lỗi:

API mô-đun web

import { getStorage, ref, getDownloadURL } from "firebase/storage";

// Create a reference to the file we want to download
const storage = getStorage();
const starsRef = ref(storage, 'images/stars.jpg');

// Get the download URL
getDownloadURL(starsRef)
  .then((url) => {
    // Insert url into an <img> tag to "download"
  })
  .catch((error) => {
    // A full list of error codes is available at
    // https://firebase.google.com/docs/storage/web/handle-errors
    switch (error.code) {
      case 'storage/object-not-found':
        // File doesn't exist
        break;
      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 the server response
        break;
    }
  });

API không gian tên trên web

// Create a reference to the file we want to download
var starsRef = storageRef.child('images/stars.jpg');

// Get the download URL
starsRef.getDownloadURL()
.then((url) => {
  // Insert url into an <img> tag to "download"
})
.catch((error) => {
  // A full list of error codes is available at
  // https://firebase.google.com/docs/storage/web/handle-errors
  switch (error.code) {
    case 'storage/object-not-found':
      // File doesn't exist
      break;
    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 the server response
      break;
  }
});

Bạn cũng có thể lấy hoặc cập nhật siêu dữ liệu cho các tệp được lưu trữ trong Cloud Storage.