Flutter firestore - Check if document ID already e

2020-04-10 21:21发布

I want to add data into the firestore database if the document ID doesn't already exists. What I've tried so far:

// varuId == the ID that is set to the document when created


var firestore = Firestore.instance;

if (firestore.collection("posts").document().documentID == varuId) {
                      return AlertDialog(
                        content: Text("Object already exist"),
                        actions: <Widget>[
                          FlatButton(
                            child: Text("OK"),
                            onPressed: () {}
                          )
                        ],
                      );
                    } else {
                      Navigator.of(context).pop();
                      //Adds data to the function creating the document
                      crudObj.addData({ 
                        'Vara': this.vara,
                        'Utgångsdatum': this.bastFore,
                      }, this.varuId).catchError((e) {
                        print(e);
                      });
                    }

The goal is to check all the documents ID in the database and see in any matches with the "varuId" variable. If it matches, the document won't be created. If it doesn't match, It should create a new document

4条回答
Ridiculous、
2楼-- · 2020-04-10 21:59

You can get() the document and use the exists property on the snapshot to check whether the document exists or not.

An example:

final snapShot = await Firestore.instance
  .collection('posts')
  .document(docId)
  .get()

if (snapShot == null || !snapShot.exists) {
  // Document with id == docId doesn't exist.
}
查看更多
欢心
3楼-- · 2020-04-10 22:00

To check if document exists in firestore. Trick use .exists method

Firestore.instance.document('collection/$docId').get().then((onValue){
onValue.exists ? //exists : //not exist ;
});
查看更多
别忘想泡老子
4楼-- · 2020-04-10 22:08
  QuerySnapshot qs = await Firestore.instance.collection('posts').getDocuments();
  qs.documents.forEach((DocumentSnapshot snap) {
    snap.documentID == varuId;
  });

getDocuments() fetches the documents for this query, you need to use that instead of document() which returns a DocumentReference with the provided path.

Querying firestore is async. You need to await its result, otherwise you will get Future, in this example Future<QuerySnapshot>. Later on, I'm getting DocumentSnapshots from List<DocumentSnapshots> (qs.documents), and for each snapshot, I check their documentID with the varuId.

So the steps are, querying the firestore, await its result, loop over the results. Maybe you can call setState() on a variable like isIdMatched, and then use that in your if-else statement.

Edit: @Doug Stevenson is right, this method is costly, slow and probably eat up the battery because we're fetching all the documents to check documentId. Maybe you can try this:

  DocumentReference qs =
      Firestore.instance.collection('posts').document(varuId);
  DocumentSnapshot snap = await qs.get();
  print(snap.data == null ? 'notexists' : 'we have this doc')

The reason I'm doing null check on the data is, even if you put random strings inside document() method, it returns a document reference with that id.

查看更多
Melony?
5楼-- · 2020-04-10 22:09

Use the exists method on the snapshot:

final snapShot = await Firestore.instance.collection('posts').document("docID").get();

   if (snapShot.exists){
        //it exists
   }
   else{
        //not exists 
   }
查看更多
登录 后发表回答