gpt4 book ai didi

android - com.google.firebase.firestore.FirebaseFirestoreException : Failed to get document because the client is offline. Android

转载 作者:IT老高 更新时间:2023-10-28 23:36:09 27 4
gpt4 key购买 nike

我收到这个运行时错误,我不明白它背后的原因。

com.google.firebase.firestore.FirebaseFirestoreException:获取文档失败,因为客户端离线。

下面是我的 Activity 中尝试从云 Firestore 获取数据的代码

DocumentReference docRef = db.collection("room-id-1").document("participan-name-1");
docRef.get().addOnCompleteListener(new OnCompleteListener<DocumentSnapshot>() {
@Override
public void onComplete(@NonNull Task<DocumentSnapshot> task) {
if (task.isSuccessful()) {
DocumentSnapshot document = task.getResult();
if (document != null) {
Log.d(TAG, "DocumentSnapshot data: " + task.getResult().getData());
userData.registerUserToHotspot(roomId_str, participantName_str);
} else {
Log.d(TAG, "No such document");
}
} else {
Log.d(TAG, "get failed with ", task.getException());
}
}
});

对此我能做些什么吗?

最佳答案

发生这种情况是因为在任务完成时触发了 OnCompleteListener,它要么失败,要么成功。为避免该错误,您可以使用单独的 OnSuccessListenerOnFailureListener

OnSuccessListener在任务成功时被调用,但是如果出现上述错误,OnFailureListener会被触发,你可以在onFailure()中处理错误 监听器的方法。

快乐编码:)

关于android - com.google.firebase.firestore.FirebaseFirestoreException : Failed to get document because the client is offline. Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46620957/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com