gpt4 book ai didi

firebase - 为React Native启用Firestore持久性

转载 作者:行者123 更新时间:2023-12-04 04:28:33 25 4
gpt4 key购买 nike

我正在使用React Native Firebase,并且正在尝试为我的应用启用持久性。

在我的Android onCreate上:

public void onCreate() {
super.onCreate();
FirebaseDatabase.getInstance().setPersistenceEnabled(true);
SoLoader.init(this, /* native exopackage */ false);
}

For some reason when I am online and I kill my app and reopen, the images seems to reload and it takes long to appear..If I turn the net off they will come up instantly showing that the offline data actually works.



如何启用Firestore的持久性,以便它将立即从缓存中加载未更改的数据?

我看到了说明文件,该文件表明我需要为android添加以下代码:
FirebaseFirestoreSettings settings = new FirebaseFirestoreSettings.Builder()
.setPersistenceEnabled(true)
.build();
db.setFirestoreSettings(settings);

但是我在导入 时不知道如何与React Native Firebase集成RNFirebaseFirestorePackage

任何帮助,将不胜感激!

最佳答案

对于react-native + firebase,我的建议之一是react-native-firebase,它在JS和 native 框架之间架起了桥梁。

进行快速搜索,好像您是cannot directly-enable persistance

您需要通过Settings进行操作。

关于firebase - 为React Native启用Firestore持久性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51027393/

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