我有一些函数可以从Firebase读取数据,但有时候我从来没有得到过响应(或者它被大量延迟).我读了
here,Firebase可能会在收到数据之前关闭套接字连接.看起来有人有类似的问题
here,但从未发布过解决方案.
// loads the current user's information static func loadUserDataWithCompletion(completion: (UserInfo) -> Void) { let ref = FIRDatabase.database().reference() print("loading current user data...") let uid = (FIRAuth.auth()?.currentUser?.uid)! ref.child("users").queryOrderedByKey().queryEqualTovalue(uid).observeEventType(.ChildAdded,withBlock: { (snapshot) in print("found user data!") if let dictionary = snapshot.value as? [String:AnyObject] { let info = userFromDict(dictionary) // execute code slated for completion completion(info) } }) }
有没有办法可以使用observeEventType检测错误?也许那时我至少会获得有关问题发生原因的更多信息.
解决方法
在观察数据库时,您可能会遇到三种可能的错误: –
>您尚未定义数据库观察查询的正确路径
>您正在以错误或错误的方式进行解析
>您无权在该特定时间访问该特定节点(安全规则)
对于前两个你必须自己照顾它,但对于第三个条件,你可以使用withCancel块: –
FIRDatabase.database().reference().child("users").queryOrderedByKey().queryEqual(tovalue: "uid").observe(.childAdded,with: { (snapshot) in //your code },withCancel: {(err) in print(err) //The cancelBlock will be called if you will no longer receive new events due to no longer having permission. })
>对于错误处理,如果用户在写入时丢失网络连接,则无论网络延迟或连接如何,您的应用程序都会保持响应.请参阅Firebase Docs的脱机写数据部分