Where 子句检索所有用户

Where clause to retrieve all users

我刚刚开始使用 Firebase。我的问题是关于 'where' 子句。

我得到了一些数据 (json):

Users
|
|_____ John
|        |___ name: John Farmer
|        |___ searchingForGame: true
|
|_____ James
|        |___ name: James Smith
|        |___ searchingForGame: false
|
|_____ Barbara
         |___ name: Barbara Smith
         |___ searchingForGame: true

我想检索所有用户 WHERE searchingForGame = true

有什么想法吗?

Firebase 不像 SQL 那样工作,您需要完全不同的方法来处理它。我真诚地建议先阅读他们的文档,非常好! link 应该至少能回答你的部分问题:https://www.firebase.com/docs/web/guide/retrieving-data.html