Firebase / Firestore:当用户更改值时实时保存或更新

时间:2019-05-10 08:32:31

标签: performance firebase react-native google-cloud-firestore react-native-firebase

我正在开发使用React-native和firebase编写的移动应用程序。我想在没有用户触发的情况下实时存储用户的值。

我关心的是性能和最佳实践:在用户更改(例如文本字段)时可以更新文档吗?换句话说,是做类似这样的事情:

onDataChange = (obj) => {
   firebase.firestore().collection("collection").doc(obj.id).update(cvObj).then(() => {
// ok
        }).catch(e => {
// notify the user about the error
        })
    }

脱机持久性如何? 非常感谢

0 个答案:

没有答案