查询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吗?
或者它是如何产生作用的?
2条答案
按热度按时间gr8qqesn1#
编辑2018年8月13日:
根据有关数组成员关系的更新文档,现在可以使用
whereArrayContains()
方法基于数组值过滤数据。一个简单的例子是:字符串
此查询返回regions字段是包含west_coast的数组的每个city文档。如果数组具有您查询的值的多个示例,则该文档仅包含在结果中一次。
根据official documentation regarding arrays:
虽然云Firestore可以存储数组,但**
it does not support
**查询数组成员或更新单个数组元素。如果你只想得到整个
papers
数组,你需要遍历一个Map
,如下所示:型
但是请注意,即使
papers
对象作为数组存储在数据库中,entry.getValue()
返回的也是ArrayList
,而不是array
。afdcj2ne2#
ArrayList<Map<String,Object>> arrayInTheDocument =(ArrayList<Map<String,Object>>)documentSnapshot.getData().get(“documentName.ArrayName”);