Firebase Firestore Increment FieldValue does not increment

后端 未结 3 1155
抹茶落季
抹茶落季 2021-01-28 23:27

so i\'ve read all the documentation everything about increment a counter in a Firestore database. I have this code

const admin = require(\"firebase-admin\");
co         


        
3条回答
  •  北海茫月
    2021-01-29 00:15

    For anyone having issues with this, be careful to use the .update() method instead .set(). Also you need to have a value existing in the firestore that so it has something to increment.

提交回复
热议问题