检查cloudfirestore字段中的字段中是否已经存在字符串并且抖动

时间:2018-08-07 20:42:51

标签: dart google-cloud-firestore flutter

我在cloudfirestore中有一个名为IDS的集合,里面有一个名为ID的文档,在此文档中,我有以ID1开头的字段,几乎达到ID14000,用户在文本字段中输入其ID,我需要检查是否该ID存在于“谢谢”字段中。

1 个答案:

答案 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
}