java - 如何从 Firestore 获取对象数组

标签 java android firebase google-cloud-firestore

查询 map 数组字段的正确方法是什么。

目前的结构是

Collection1
     Document1
         -papers:                <---- This is an array  
              (0): 
                 -Name:abc
                 -Id:123 
              (1): 
                 -Name:xyz
                 -Id:456

这是我的代码

DocumentReference docRef = db.collection("Collection1").document("Document1");
        docRef.get().addOnCompleteListener(new OnCompleteListener<DocumentSnapshot>() {
            @Override
            public void onComplete(@NonNull Task<DocumentSnapshot> task) {
                if (task.isSuccessful()) {
                    DocumentSnapshot document = task.getResult();
                    if (document != null && document.exists()) {
                       //?? how can I retrieve papers
                }
            }
        });

基本上我是检索它并将其转换为 ArrayList> 然后遍历它以创建我的最终 ArrayList 吗?

或者它是如何工作的?

最佳答案

根据 official documentation regarding arrays :

Although Cloud Firestore can store arrays, it does not support querying array members or updating single array elements.

如果您只想获取整个 papers 数组,您需要像这样遍历 Map:

Map<String, Object> map = document.getData();
for (Map.Entry<String, Object> entry : map.entrySet()) {
    if (entry.getKey().equals("papers")) {
        Log.d("TAG", entry.getValue().toString());
    }
}

但是请注意,即使 papers 对象作为数组存储在数据库中,entry.getValue() 返回的也是一个 ArrayList,而不是一个数组

2018 年 8 月 13 日编辑:

根据有关 array membership 的更新文档,现在可以使用 whereArrayContains() 方法根据数组值过滤数据。一个简单的例子是:

CollectionReference citiesRef = db.collection("cities");
citiesRef.whereArrayContains("regions", "west_coast");

This query returns every city document where the regions field is an array that contains west_coast. If the array has multiple instances of the value you query on, the document is included in the results only once.

关于java - 如何从 Firestore 获取对象数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49101373/

相关文章:

java - 运行 PATH 中的 Jar 文件

java - 谁能告诉我是否使用了正确的代码来打印此 ArrayList 中出现的事件?

android - 将设备中的磁场 X、Y、Z 值转换为全局引用系

java - 2 个扫描仪但有一个 onActivityResult?

ios - 是否可以将 Stripe 与 Firebase 和 iOS 集成?

javascript - FirebaseUI 登录完成后,Firebase token 如何传递到重定向网址?

ios - 为什么GeoFire的函数getLocationForKey会被超越?

java - 添加新的 ListView 项目并从另一个 Activity 获取项目的值

java - 跨 .java 文件创建雷区实例

android - 如何以编程方式检查 Android 中点击事件后新屏幕是否已完全加载?