有没有一种将图像直接存储到Firestore中的方法?

时间:2020-09-15 20:55:24

标签: android firebase google-cloud-firestore

我知道如何从android studio上传图像以上传到Firestore,有直接方法吗?

1 个答案:

答案 0 :(得分:1)

要将图像写入Firestore,请在调用DocumentReference.set()(或byte[])时包含一个字节数组(DocumentReference.update())。

不过,一般来说,我建议您将Cloud Storage for Firebase存储在Firebase中,因为它是专用的文件存储产品。