我在cloudfirestore中有一个名为IDS的集合,里面有一个名为ID的文档,在此文档中,我有以ID1开头的字段,几乎达到ID14000,用户在文本字段中输入其ID,我需要检查是否该ID存在于“谢谢”字段中。
答案 0 :(得分:1)
final CollectionReference dbIDS = Firestore.instance.collection('IDS');
QuerySnapshot _query = await dbIDS
.where('ID', isEqualTo: theUserInputID)
.getDocuments();
if (_query.documents.length > 0) {
// the ID exists
}