0

我无法增加帖子“喜欢”的数量。以下是我现在拥有的:

addLike(pid, uid) {
    const data = {
      uid: uid,
    };
    this.afs.doc('posts/' + pid + '/likes/' + uid).set(data)
 .then(() => console.log('post ', pid, ' liked by user ', uid));

  const totalLikes = {
         count : 0 
        };
        const likeRef = this.afs.collection('posts').doc(pid);
         .query.ref.transaction((count => {
           if (count === null) {
               return count = 1;
            } else {
               return count + 1;
            }
        }))
        }

这显然会抛出错误。

我的目标是“喜欢”一个帖子并在另一个位置增加一个“计数器”。可能作为每个 Pid 的一个字段?

我在这里想念什么?我确定我的路径是正确的..

提前致谢

4

1 回答 1

1

您将使用 Firebase 实时数据库 API 处理 Cloud Firestore 上的事务。虽然这两个数据库都是 Firebase 的一部分,但它们完全不同,您不能从另一个数据库中使用 API。

要详细了解如何在 Cloud Firestore 上运行事务,请参阅文档中的使用事务更新数据。

它看起来像这样:

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

        var newCount = (likeDoc.data().count || 0) + 1;
        transaction.update(likeDoc, { count: newCount });
    });
}).then(function() {
    console.log("Transaction successfully committed!");
}).catch(function(error) {
    console.log("Transaction failed: ", error);
});
于 2018-09-03T21:30:43.647 回答