[将多个文件上传到js中的Firebase存储后如何获取url数组

问题描述 投票:0回答:1

将多个文件上传到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
});
reactjs firebase firebase-storage
1个回答
0
投票

最简单的方法是上传每个文件后返回元数据的下载URL 代替

return Promise.all(files.map(function(file) {
  return ref.child(file.name).put(file).then(function() {
    return ref.child(file.name).getDownloadURL();
  })
}));
© www.soinside.com 2019 - 2024. All rights reserved.