gpt4 book ai didi

ios - 在 Firebase 中循环

转载 作者:可可西里 更新时间:2023-11-01 00:59:13 24 4
gpt4 key购买 nike

我一直在尝试寻找一种方法来打印/隔离 Firebase 中 JSON 数据结构的一部分中的每个子项。我正在使用 swift,另一篇文章提到并验证了这是解决方案。

for child in snapshot.childSnapshotForPath("vets").children {
print(child.key)
}

但这无效,因为它带有此警告。

Ambiguous use of 'key'

您建议我如何遍历数据?非常感谢所有帮助。

最佳答案

试试这个:

FIRDatabase.database().reference().child("vets").observeEventType(.Value, withBlock: { snapshot in
if let snapshots = snapshot.children.allObjects as? [FIRDataSnapshot] {
for child in snapshots {
print("Child: ", child)
}
}

})

关于ios - 在 Firebase 中循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38023471/

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