有什么方法可以返回到firebase中的上一个节点。使用php,您可以执行..
操作,它会将您带到上一个控制器。提前谢谢你
最佳答案
如果要查找跳到该特定节点的父密钥,请尝试以下操作:-
FIRDatabase.database().reference().child("your_Root/your_Child1/your_Child2").observeSingleEvent(of: .value, with: {(Snapshot) in
let parentKey = Snapshot.ref.parent!.key
print(parentKey) // Will print out "your_Child2"
})