我试图按的顺序检索当前用户uid等于“发送者”或“接收者”值的所有实例。
这是我的查询。我知道 || 的语法是错误的,但我只是找不到方法。
感谢您的帮助。
readHistory = () => {
allHistory = [];
let myHistory = firebase
.database()
.ref("/locations")
.child("sender" || "receiver")
.equalTo(this.currentUser.uid)
.orderByChild("order")
.limitToLast(25);
myHistory.on("value", snapshot => {
console.log("how can I do this?", snapshot);
});
};