在Firestore中按文档名称获取数据

时间:2020-04-30 21:15:08

标签: firebase for-loop flutter google-cloud-firestore document

我想通过文档名称获取文档的特定数据。

这是代码:-


QuerySnapshot snaps =
   await Firestore.instance.collection(gender+'-names').getDocuments();
 for (int count; count < countOfLetters; count++) {
        nameID = letterCode+'-'+random.toString();
        name.add(snaps.documents[<<i want nameID here>>]['name']);
}

如果有人可以帮助我,那就太好了!

0 个答案:

没有答案