firebase 如何从Firestore中获取对象数组

pdtvr36n  于 2023-08-07  发布在  其他
关注(0)|答案(2)|浏览(116)

查询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吗?
或者它是如何产生作用的?

gr8qqesn

gr8qqesn1#

编辑2018年8月13日:

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

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

字符串
此查询返回regions字段是包含west_coast的数组的每个city文档。如果数组具有您查询的值的多个示例,则该文档仅包含在结果中一次。
根据official documentation regarding arrays
虽然云Firestore可以存储数组,但**it does not support**查询数组成员或更新单个数组元素。
如果你只想得到整个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,而不是array

afdcj2ne

afdcj2ne2#

ArrayList<Map<String,Object>> arrayInTheDocument =(ArrayList<Map<String,Object>>)documentSnapshot.getData().get(“documentName.ArrayName”);

相关问题