我得到了Instagram的應用程序。 我火力點作爲後端其中有:Firebase複雜查詢 - iOS Swift
後節點 - 包含所有帖子來自不同用戶 [POST_ID post_user POST_NAME POST_CONTENT]
問題: 我只想從得到的帖子我跟隨的用戶。
我的步驟:
我在陣列下面users_id列表
followersIds
我想知道如果我可以讓查詢像
getFollowersList { (followersIds) in print(followersIds) self.postRef.queryOrdered(byChild: "user").queryEqual(toValue: followersIds).queryLimited(toLast: limit).observeSingleEvent(of: .value, with: { (snapshot) in if snapshot.value is NSNull { completion(nil); return} else { let dict = snapshot.value as! [String:Any] self.mapDictionaryToArrayOfPost(dict: dict, completion: { (posts) in completion(posts) }) } }) { (error) in debugPrint(error.localizedDescription) } }
問題: 火力地堡不能接受queryEqual數組作爲參數()
我可以在應用程序過濾做這個過濾器,但我想查詢火力並得到結果。 因爲在應用程序中過濾不是一件好事。
任何建議。