我正在尝试遍历firestore中文档内部的子集合。
这是我的数据库结构。
我想遍历batch-no-01
内部的子集合。
这就是我尝试的方式。
StreamBuilder(
stream: Firestore.instance.collection('batches').document('batch-no-01').snapshots(),
builder: (BuildContext context, AsyncSnapshot snapshot){
return Text('this is sample text');
},
)
我只得到一次输出。 batch-no-01
中有2个子集合,因此应该迭代2次。但这不起作用。我无法弄清我所缺少的。任何帮助将不胜感激。
答案 0 :(得分:0)
“ batch-no-01”收藏夹中有什么?解决方案可以是将它们转换为文档。因此,在“ batch-no-01”文档之后,创建一个具有已知名称(如ID)的集合。