我正在尝试使用Swift在空的Firebase数据库中创建一个子级,代码正在运行而没有任何错误,但是我看不到数据库中的更改。
代码:
let ref = Database.database().reference()
ref.child("Branches")
最佳答案
您没有在数据库中添加值。
在Firebase中,一旦设置新值,便会创建其他子项。
您可以使用setValue
或updateChildValues
添加值。
示例:
let ref = Database.database().reference().child("branches")
let values = ["any_key" : "any_value"]
ref.updateChildValues(values) { (err, reference) in
// handle errors or anything related to completion block.
}
文件: https://firebase.google.com/docs/database/ios/read-and-write
注意:确保正确配置了所有内容:https://firebase.google.com/docs/database/ios/start
关于ios - swift 无法在Firebase数据库中创建子级,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54447212/