我有一个基于多个 WHERE 子句的查询,如果找到它,它返回 true,否则返回 true,否则返回 false。问题是它会在数据库中添加新记录,但之后会自动删除它。注释掉删除部分时,它仅当不存在时才按预期添加新记录。
这是我的代码:
var found = false;
firebase.database().ref(`/yums/`)
.orderByChild('recipeId').equalTo(uid)
.on('value', snapshot => {
const likes = snapshot.val();
for (var like in likes) {
if (likes[like].userId == currentUser.uid) {
found = true;
firebase.database().ref(`/yums/`)
.child(like).remove();
}
}
})
if (found == false ) {
firebase.database().ref(`/yums/`)
.push({
recipeId: uid,
userId: currentUser.uid,
timestamp: Date.now(),
})
.then(() => {
dispatch({ type: YUMMED_SUCCESS });
});
}
必须将 .on 替换为 .once,并将 if found 语句放在 .then() 块中