火力地堡數據結構Firebase中的嵌套密鑰查詢?
{
"books": {
"-KaKjMMw-WQltqxrGEmj": {
"categories": {
"cat1": true,
"cat2": true
},
"author": "user1",
"title": "event1"
},
"-KaKjMMw-WQltqxrGEmk": {
"categories": {
"cat1": true,
"cat2": false
},
"author": "user1",
"title": "event2"
}
}
}
查詢來查找特定作者的所有書籍
FNode.testNode.child("books")
.queryOrderedByChild("author")
.queryEqualToValue("user1")
.observeEventType(.Value) { (snapshot) in
print(snapshot)
}
問:
我想找到所有的書屬於到cat1。無法弄清楚這個問題。
很抱歉更新了數據結構!稍微調整一下,通過更改鍵來隱藏我原來的數據目的。失敗嚴重。我的錯 ! :D –