Firebase's documentation涵盖下载图片如果您调用存储空间getDownloadURL
,我的工作正常(直接来自文档):
storageRef.child('images/stars.jpg').getDownloadURL().then(function(url) {
// `url` is the download URL for 'images/stars.jpg'
// This can be downloaded directly:
var xhr = new XMLHttpRequest();
xhr.responseType = 'blob';
xhr.onload = function(event) {
var blob = xhr.response;
};
xhr.open('GET', url);
xhr.send();
// Or inserted into an <img> element:
var img = document.getElementById('myimg');
img.src = url;
}).catch(function(error) {
// Handle any errors
});
但是,我已经有了一个网址,想要下载图片而不调用firebase存储空间。这是我的尝试:
var url = "https://firebasestorage.googleapis.com/v0/b/somerandombucketname..."
console.log(url);
// This can be downloaded directly:
var xhr = new XMLHttpRequest();
xhr.responseType = 'blob';
xhr.onload = function(event) {
var blob = xhr.response;
};
xhr.open('GET', url);
xhr.send();
但是,没有下载任何文件,浏览器的开发工具中也没有显示错误。
注意:我知道网址是正确的,因为如果我将网址直接放入浏览器搜索栏,我就可以访问该文件并下载。
是否有人知道如何使用您已有的下载网址下载图片(不像在文档中那样调用Firebase存储空间)?
答案 0 :(得分:1)
这最终为我工作:
var url = "https://firebasestorage.googleapis.com/v0/b/somerandombucketname..."
var filename = url.substring(url.lastIndexOf("/") + 1).split("?")[0];
var xhr = new XMLHttpRequest();
xhr.responseType = 'blob';
xhr.onload = function() {
var a = document.createElement('a');
a.href = window.URL.createObjectURL(xhr.response);
a.download = "fileDownloaded.filetype"; // Name the file anything you'd like.
a.style.display = 'none';
document.body.appendChild(a);
a.click();
};
xhr.open('GET', url);
xhr.send();
这实际上是为我的网址创建了a href
,然后在收到a href
响应时以编程方式点击xhr
。
我不清楚为什么第一种方式不起作用,但希望这有助于其他人面对同样的问题。