我正在使用firebase documentation下载与firestore中的一个文档相关的文件。我实际上是粘贴了代码来实现这一点的,但是当我单击该元素时,控制台上没有显示任何内容。
import { ref, getDownloadURL } from 'firebase/storage'
export const downloadMethod = (path) => {
getDownloadURL(ref(storage, path))
.then(url => {
const xhr = new XMLHttpRequest();
xhr.responseType = 'blob';
xhr.onload = (event) => {
const blob = xhr.response;
};
xhr.open('GET', url);
xhr.send();
})
.catch(error => {
throw error
})
}
在此之前,我有cors错误,但我解决了它使用
[
{
"origin": ["*"],
"method": ["GET"],
"maxAgeSeconds": 3600
}
]
我希望网站在我点击按钮时下载请求的文件。
2条答案
按热度按时间omqzjyyz1#
我猜您缺少对存储的引用
gev0vcfq2#
由于文档中的示例不起作用,所以我在文档中查找了其他方法,并通过使用
getBlob()
成功地完成了所需的操作这是我的最后一个函数:
如果你觉得我能改变什么你可以告诉我