📅  最后修改于: 2022-03-11 15:02:49.297000             🧑  作者: Mango
const ref = this.storage.ref('array.txt');
ref.getDownloadURL().subscribe(data => {
fetch(data)
.then(function(response) {
response.text().then(function(text) {
console.log(text);
});
});
});