简体   繁体   English

Firebase重新调整了嵌入快照的速度

[英]Firebase retuns incored snapshot swift

I have a firebase chat application and I am trying to get user credentials but I am getting wrong values from the firebase in my console 我有一个Firebase聊天应用程序,我试图获取用户凭据,但是从控制台的Firebase中获取了错误的值

在此处输入图片说明

that is what my ref and snapshot is and when I decide to print this in the console I get this 这就是我的引用和快照,当我决定在控制台中打印时,我得到了

CREDENTiL data ref Optional({
    "cc71128f-99a7-4435-879b-b1d0c7ce9c37" =     {
        location = "-Lav1QzhaoRMGAJHy8nQ";
    };
})
CREDENTiL data ref Optional({
    email = "adie.olalekan@max.ng";
    name = "Olalekan Adie";
    profilePicLink = "http://www.freeiconspng.com/uploads/profile-icon-9.png";
})

this is my code 这是我的代码

self.allUserRef?.observe(.childAdded, with: { (snapshot) in
                let id = snapshot.key
                print("CREDENTiL data ref \(snapshot.value)")

                if let data = snapshot.value as? [String: AnyObject] {
                    if snapshot.hasChild("credentials") {
                    print("CREDENTiL data \(data)")
                        if let credentials = data["credentials"]! as? [String: AnyObject] {
                            print("CREDENTiL \(credentials)")
                            if id != exceptID {
                                let userInfo = ChatUser(dictionary: data as NSDictionary)
                            }
                        }
                    }
                }
            })

Any help would be appreciated 任何帮助,将不胜感激

let refer = Database.database().reference()

refer.child("chatUsers").child("your uid").observe(.childAdded, with: { (snapshot) in
            let id = snapshot.value//your snapshot
            if((((snapshot.value as! NSDictionary).allKeys) as! NSArray).contains("credentials"))
            {
                print("credentials",snapshot.value)
            }
        })

Please try above code to get your credentials as snapshot. 请尝试上面的代码以获取您的凭据作为快照。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM