如何从Firestore获取对象数组

时间:2018-03-04 22:53:11

标签: java android firebase google-cloud-firestore

查询作为地图数组的字段的正确方法是什么。

目前结构是

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&gt;然后遍历它以创建我的最终ArrayList?

或者它是如何运作的?

2 个答案:

答案 0 :(得分:4)

根据official documentation regarding arrays

  

虽然Cloud 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

编辑2018年8月13日:

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

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

此查询返回每个城市文档,其中regions字段是包含west_coast的数组。如果数组具有您查询的值的多个实例,则文档仅包含在结果中一次。

答案 1 :(得分:0)

ArrayList > arrayInTheDocument =(ArrayList >)documentSnapshot.getData()。get(“ documentName.ArrayName”);