检索Firebase数据库的值,嵌套数据

时间:2016-10-04 15:16:19

标签: ios json swift firebase firebase-realtime-database

这就是我的JSON嵌套数据库的外观:

enter image description here

它是一个pets根,它有多个唯一ID。然后每个ID代表一个具有某些属性的宠物,其中一些(如feedingListwalkingList)也包含更多代表膳食/步行及其时间和完成布尔值的值。

我在Swift中编写代码来检索某些值,但是我遇到了fListwList的问题。

func getPetInfo() {

        let refMeals = reff.child("pets")
        refMeals.observe(.value, with: { (snapshot) in

            if let snapCast = snapshot.value as? [String:AnyObject]{
                for snap in snapCast{
                    if self.currentUser.pets.contains(snap.key) {
                        if let x = snap.value["name"] as? String{
                            self.tempPet.name = x
                            print(x)

                        }
                        if let y = snap.value["type"] as? String{
                            //self.tempPet.type = y
                            print(y)

                        }
                        if let z = snap.value["age"] as? Int{
                            //self.tempPet.age = z
                            print(z)
                        }
                        print(snap.value["fList"])
                         if let w = snap.value["fList"] as? [String:AnyObject]{
                            for snippete in w {
                                if let a = snippete.value["time"] as? String{
                                    //self.tempPet.feedingList.append(a)
                                    print(a)
                                }
                                if let b = snippete.value["doneForToday"] as? Bool{
                                    //self.isItDoneForToday.append(b)
                                    print(b)
                                }
                            }
                        }
                        if let r = snap.value["wlist"] as? [String:AnyObject]{
                            for snippete in r {
                                if let c = snippete.value["time"] as? String{
                                    //self.tempPet.feedingList.append(a)
                                    print(c)
                                }
                                if let d = snippete.value["doneForToday"] as? Bool{
                                    //self.isItDoneForToday.append(b)
                                    print(d)
                                }
                            }
                        }
                        //self.petArray.append(self.tempPet)
                    }
                }
            }
        }) { (error) in
            print(error.localizedDescription)
        }
    }

nameagetype的所有内容都可以打印出来,但是当涉及到这行代码时:

 if let w = snap.value["fList"] as? [String:AnyObject]
...

它不会让它打印出来。你能告诉我哪里错了吗?我很难理解这个JSON树的值和数组。当我试图理解get的内容并转换为什么时,这是一团糟。提前谢谢。

这是打印出来的:

blasted
cat
3
Optional(<__NSArrayM 0x60800024f000>(
{
    doneForToday = 0;
    time = "12:00";
}
)
)  

1 个答案:

答案 0 :(得分:1)

试试这个: -

 if let r = snap.value["wlist"] as? [Int:AnyObject]{
                        for snippete in r {
                            if let c = snippete.value["time"] as? String{
                                //self.tempPet.feedingList.append(a)
                                print(c)
                            }
                            if let d = snippete.value["doneForToday"] as? Bool{
                                //self.isItDoneForToday.append(b)
                                print(d)
                            }
                        }
                    }
                    //self.petArray.append(self.tempPet)
                }