如何在cloudfirestore的flutter中使用parent选项?

时间:2018-10-13 21:34:40

标签: firebase dart flutter google-cloud-firestore

我只想知道父选项在streambuilder中返回什么,因为在文档中没有提到它:

Firestore.instance
         .collection('Doctors')
         .Parent()
         .snapshots(),

这是否返回包含此子集合的文档数据?还是返回不同的东西?

1 个答案:

答案 0 :(得分:0)

来自documentation for the parent method

  

对于子集合,parent返回包含的DocumentReference

     

对于根集合,返回null

您现在编写Doctors的方式是顶级集合。对于这样的集合,调用parent()返回null