firebase存储的Put方法似乎一次只能获取一个文件。如何使用多个文件?我正在尝试等待每次上传完成并为每个上传收集下载URL,然后继续将这些URL保存在实时数据库中的节点中的数组中,但我似乎无法找到处理此问题的最佳方法。
答案 0 :(得分:2)
我写了GitHub gist这个:
// set it up
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
});