作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近为使用 Firestore 的 android 应用启用了离线数据。我在保存数据时遇到的问题是我在保存数据后没有收到回调(当客户端离线时,我知道它将离线存储)。
示例代码
batch.set(mFirestore.document("documentPath"), documentMap);
batch.set(mFirestore.collection("history").document(), historyMap);
batch.commit().addOnSuccessListener(new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
view.onSuccess();
}
}).addOnFailureListener(new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
view.onFailed(e.getMessage());
}
});
最佳答案
目前,将数据添加到数据库后,本地写入没有回调。 addOnSuccessListener() 方法仅在写入已提交到数据库时触发。
这是对 future 的功能请求.. 从 Firestore 支持收到的答案(202 年 2 月 18 日)
关于google-cloud-firestore - 用于离线保存在android中的firestore回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48850411/
我有 json 数据: { "products": [ { "productId" : 0, "productImg" : "../img/product-ph
我是一名优秀的程序员,十分优秀!