📜  如何读取 firebase txt 文件 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:49.297000             🧑  作者: Mango

代码示例1
const ref = this.storage.ref('array.txt');
ref.getDownloadURL().subscribe(data => {
  fetch(data)
  .then(function(response) {
    response.text().then(function(text) {
      console.log(text);
    });
  });
});