作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我正在编写一个应用程序,它可以从图库中选择一张图片并将其上传到 firestore 中的一个文件夹中。
await Future.forEach(_paths.entries, (v) async {
String uid = Uuid().v1();
StorageReference imgReference =
_storageReference.child("Form2").child(uid);
StorageUploadTask task = imgReference.putFile(
File(v.value)
);
StorageTaskSnapshot downloadURL = await
task.onComplete;
String value = await downloadURL.ref.getDownloadURL();
paths[uid] = value;
}
图像没有上传到文件夹中。但是是直接上传到firestore
最佳答案
您必须在 .child() 中指定文件夹名称。喜欢:.child("/$folder").child("$fileName")
。
示例:
StorageReference ref = FirebaseStorage.instance.ref().child('/$folder').child(fileName);
StorageUploadTask uploadTask = ref.putData(imageData);
print('Upload triggered in the background.');
...
return await (await uploadTask.onComplete).ref.getDownloadURL();
关于firebase - 如何将图像上传到 firebase 存储中的文件夹中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57435335/
我是一名优秀的程序员,十分优秀!