使用 onDisconnectUpdateChildValues 时如何读写 - firebase swift

How to both read and write when using onDisconnectUpdateChildValues - firebase swift

我正在尝试在用户断开连接时减少 observerCount。你是怎么做到的?

我的代码:

let connectedRef = Database.database().reference(withPath: ".info/connected")
    
    connectedRef.observe(.value, with: { snapshot in
        
        guard let connected = snapshot.value as? Bool, connected else {
            completion(false)
            return
            
        }
        
        
        self.database.child("\(groupChatId)_A").onDisconnectUpdateChildValues(["observersCount": 0]){ (error, ref) in
            if let error = error {
                print("\(error)")
            }
            completion(true)
        }

        
    })

无法在 onDisconnect 处理程序中读取数据库。本质上,该操作必须是纯 set,在附加处理程序时,您写入的数据是已知的。

幸运的是,对于这个用例,Firebase 刚刚添加了一个原子 increment() 操作,这在这里非常完美。我自己没有在 Swift 中使用过它,但它应该是这样的:

.onDisconnectUpdateChildValues([
  "observersCount": firebase.database.ServerValue.increment(-1)
])