我正在Android上构建一个应用程序,并寻找一种方法一次上传大量图像。
我设法分别上传每张图片但不是一起上传
非常感谢帮助:)
答案 0 :(得分:0)
在JavaScript中(因为我已经有了这个例子):
// 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
});
来自:https://gist.github.com/mcdonamp/d4f1327b58ad69334ef06327184df790
使用Task
API可以使用Java完成同样的事情。