将多个文件上传到Firebase存储后如何获取url数组。我正在使用下面的代码,但它返回元数据数组。
firebase.storage().ref().constructor.prototype.putFiles = function(files) {
var ref = this;
return Promise.all(files.map(function(file) {
return ref.child(file.name).put(file);
}));
}
// use it!
firebase.storage().ref().putFiles(files).then(function(metadatas) {
// Get an array of file metadata
}).catch(function(error) {
// If any task fails, handle this
});
最简单的方法是上传每个文件后返回元数据的下载URL 代替:
return Promise.all(files.map(function(file) {
return ref.child(file.name).put(file).then(function() {
return ref.child(file.name).getDownloadURL();
})
}));