我只想知道父选项在streambuilder中返回什么,因为在文档中没有提到它:
Firestore.instance
.collection('Doctors')
.Parent()
.snapshots(),
这是否返回包含此子集合的文档数据?还是返回不同的东西?
答案 0 :(得分:0)
来自documentation for the parent
method:
对于子集合,parent返回包含的
DocumentReference
。对于根集合,返回
null
。
您现在编写Doctors
的方式是顶级集合。对于这样的集合,调用parent()
返回null
。