从firebase数据库中检索节点数据

时间:2016-10-22 12:29:53

标签: firebase swift2 firebase-realtime-database

我已将我的应用与firebase数据库相关联,我想从中检索一个节点的字符串。

我想要检索的节点如下所示,名称为' timeStamp'。有没有办法可以检索此文本然后打印出来?firebase node

1 个答案:

答案 0 :(得分:1)

Firebase文档指南

中介绍了答案

this

这是一个例子:

let ref = FIRDatabase.database().reference()
          .child("Users+infomation/ff..etc/timeStamp")
ref?.observeSingleEvent(of: .value, with: { snapshot in
     let val = snapshot?.value
     print(val!)
})

*这是Swift 3