我无法增加帖子“喜欢”的数量。以下是我现在所拥有的:
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的字段?
我在这里想念什么?我确定我的道路是正确的。
预先感谢
答案 0 :(得分:1)
您将使用Firebase Realtime Database API进行Cloud Firestore上的交易。虽然这两个数据库都是Firebase的一部分,但它们是完全不同的,并且您不能彼此使用该API。
要了解有关如何在Cloud Firestore上运行事务的更多信息,请参阅文档中的updating data with transactions。
它看起来像这样:
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);
});