我的客户端已经在Android上使用了将近2个月的Flutter应用程序,现在我还必须制作iOS版本。
当我尝试使用userAccount.id运行get调用时,我从firebase返回了6次数据,但随后出现“交易失败,所有重试”错误。
我尝试了所有可以在Google上找到的内容。
注意:从Firebase传输流数据可正常工作
我正在使用cloud_firestore flutter软件包
这是函数:
static Future<WebRequestResponse> getUserAccountByID(String id) async {
if (!await isInternetConnectionAvailable()) {
return WebRequestResponse(false, null, null,
errorType: ErrorType.ERROR_NO_INTERNET_CONNECTION);
}
DocumentSnapshot ds;
final TransactionHandler getTransaction = (Transaction tx) async {
ds = await tx.get(userAccountsCollection.document(id));
print(ds.data);
return ds.data;
};
WebRequestResponse response = WebRequestResponse(false, null, null);
return Firestore.instance.runTransaction(getTransaction).then((jsonData) {
print(jsonData);
UserAccount userAccount = UserAccount.fromJson(jsonData);
print(userAccount.id);
if (userAccount.id != null) {
response.success = true;
response.data = userAccount;
return response;
} else {
response.success = false;
response.errorType = ErrorType.ERROR_USER_NOT_FOUND;
return response;
}
}).catchError((error) {
print('get_user_account_by_id_error: $error');
response.success = false;
response.error = error;
response.errorType = ErrorType.ERROR_UNKNOWN;
return response;
});
}
这是我得到的答复:
flutter: {id: Edaavf39l4Y3cbfGy4RblYSdy1p1, profilePictureURL: https://firebasestorage.googleapis.com/v0/b/fr<REDACTED REST OF JSON>}
flutter: {id: Edaavf39l4Y3cbfGy4RblYSdy1p1, profilePictureURL: https://firebasestorage.googleapis.com/v0/b/fr<REDACTED REST OF JSON>}
flutter: {id: Edaavf39l4Y3cbfGy4RblYSdy1p1, profilePictureURL: https://firebasestorage.googleapis.com/v0/b/fr<REDACTED REST OF JSON>}
flutter: {id: Edaavf39l4Y3cbfGy4RblYSdy1p1, profilePictureURL: https://firebasestorage.googleapis.com/v0/b/fr<REDACTED REST OF JSON>}
flutter: {id: Edaavf39l4Y3cbfGy4RblYSdy1p1, profilePictureURL: https://firebasestorage.googleapis.com/v0/b/fr<REDACTED REST OF JSON>}
flutter: get_user_account_by_id_error: PlatformException(9, Transaction failed all retries., null)
如您所见,数据是通过事务内部的打印正确打印出来的,但是发生了6次,之后又失败了。知道为什么会这样以及如何解决吗?
非常感谢你
最佳答案
因此,经过数周的努力并尝试了一些随机的事情之后,我发现这可能是因为我在虚拟机上运行不流畅(尚无法确认)。
无论如何,对我来说解决方案是在每个tx.get调用之后,我必须添加一个具有相同文档ID的tx.set调用,并使用空数据进行更新。我不知道为什么,或者它如何工作,但确实可以。我虽然回答,以防将来有人遇到同样的问题。
关于ios - Firebase get调用可在android上工作,但在iOS上有奇怪的行为,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55790610/