gpt4 book ai didi

ios - 想要从 firebase 数据库中提取 QR 值,但快照打印 nil

转载 作者:行者123 更新时间:2023-11-30 11:49:46 26 4
gpt4 key购买 nike

我想提取 Firebase 数据库中的 QR 值 QR Values->year->month->day->QR : value enter image description here

func GetQR() {
let date = getDate()

let year = String(describing: date.year)
let month = String(describing:date.month)
let day = String(describing:date.day)

ref = Database.database().reference().child("QR Values").child(year).child(month).child(day)
ref.observeSingleEvent(of: .value, with: { (snapshot) in

// Get user value
let value = snapshot.value as? String


print(value)

})
{ (error) in
print(error.localizedDescription)
}

}

打印的快照为零。

最佳答案

您仍然需要在 snapshot 中查找 QR 属性。您从数据库中获取的信息:

ref = Database.database().reference().child("QR Values").child(year).child(month).child(day)
ref.observeSingleEvent(of: .value, with: { (snapshot) in
let value = snapshot.childSnapshot(forPath: "QR").value as? String

关于ios - 想要从 firebase 数据库中提取 QR 值,但快照打印 nil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48460131/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com