是否可以将Firebase的多路径更新功能与创建子节点(具有auto-id)结合使用? 到目前为止,我发现只有完整路径才知道的更新解决方案。
e.g。
var newData = [String: AnyObject]()
newData["conversations/messages/<placeholder for new id>"] = newMessage
newData["conversations/somethingDifferent"] = additionalData
...
答案 0 :(得分:7)
在客户端上生成Push-id。 childByAutoId
会返回新的Firebase
,但不会通过网络发送数据。
let ref = Firebase(url: "<my-firebase-app>")
let childRef = ref.childByAutoId()
var newData = [String: AnyObject]()
newData["conversations/messages/\(childRef.key)"] = newMessage
一旦您创建了子引用,您就可以在字典中使用其键进行多路径更新。