Swift 3.x iOS 10。

试图了解Firebase中的数据库。将一些JSON数据导入到我的应用中并设法将其读回。这是代码。

let rootRef = Database.database().reference(withPath: "0")
print("\(rootRef.key)")
let nextRef = rootRef.child("identity")
print("\(nextRef)")

nextRef.observe(.value, with: { snapshot in
    print("\(snapshot.value)")
})

哪个可行,我的数据看起来像这样...

但是,如果我想遍历数据库,查看记录2,记录3等,该如何执行我不确定实际获得多少记录的方法。

最佳答案

好吧,我找到了,很好的工作了...

let rootRef = Database.database().reference()
rootRef.observe(.value, with: { snapshot in
    print("dump \(snapshot.children.allObjects)")
})

我后代发贴:)

10-07 21:46