在尝试进一步处理之前,请检查用户是否在Firestore中

时间:2019-03-19 11:27:19

标签: javascript angular firebase google-cloud-firestore angularfire2

我在我的网站上编写了一个自定义的引用脚本,有时用户抱怨他们的referralId被覆盖,因此他们失去了一段时间内积累的任何积分。我想通过在尝试更新之前检查是否存在uid来阻止这种情况的发生。

在执行此命令之前,有没有办法让我检查用户的uid是否具有有效的引用ID?我认为问题是在这里发生的:

  processUser(result, firstName, lastName) {
    const referralId = this.utilService.generateRandomString(8);
    this.setUserData(result.user);
    this.setUserDetailData(result.user.uid, firstName, lastName, referralId);
    this.referralService.addUserToWaitlist(referralId);
  }

我是否可以提前检查一下?我的表格结构如下:

enter image description here

1 个答案:

答案 0 :(得分:1)

要检查文档是否存在并且仅在文档不存在时才写,通常使用事务。参见https://firebase.google.com/docs/firestore/manage-data/transactions#transactions。从那里:

db.runTransaction(function(transaction) {
    // This code may get re-run multiple times if there are conflicts.
    return transaction.get(sfDocRef).then(function(sfDoc) {
        if (!sfDoc.exists) {
            throw "Document does not exist!";
        }

        var newPopulation = sfDoc.data().population + 1;
        transaction.update(sfDocRef, { population: newPopulation });
    });
})

请注意,您还可以将用户数据与文档中的现有数据合并,以防止需要进行交易。例如:

userRef.set({ 
  firstName: firstName, lastName: lastName, referralId: referralId
}, { merge: true });

我不确定这对您的用例是否足够好,但是绝对可以检查一下,因为代码比事务更简单。