gpt4 book ai didi

javascript - React-Native-Firebase : RTDB Emulator

转载 作者:行者123 更新时间:2023-12-03 08:40:18 25 4
gpt4 key购买 nike

有人知道如何使用实时数据库模拟器吗?

我可以使用如下所示的函数和 firestore 模拟器。

import functions from '@react-native-firebase/functions';
import firestore from '@react-native-firebase/firestore';

functions().useFunctionsEmulator('http://localhost:5001');
firestore().settings({ host: 'localhost:8080' });

但无法找到类似的实时数据库。任何链接/视频表示赞赏。

谢谢。

最佳答案

基本上是 Frank van Puffelen 发布的解决方案是正确的。然而,这让我陷入了一段时间,所以我将分享我的经验,为其他人节省时间。

import { firebase } from "@react-native-firebase/database";
const database = firebase
.app()
.database("http://localhost:9000?ns=YOUR_DATABASE_NAMESPACE");
const ref = database.ref(`yourPath`)
...

这里有一个巨大的陷阱:如果您使用的是 Android 模拟器,则必须使用

const database = firebase
.app()
.database("http://10.0.2.2:9000?ns=YOUR_DATABASE_NAMESPACE");

如果您使用的是真正的 Android 设备,则必须设置 reverse proxy第一:

adb reverse tcp:9000 tcp:9000

然后正常设置数据库

const database = firebase
.app()
.database("http://localhost:9000?ns=YOUR_DATABASE_NAMESPACE");

我没有测试 iOS,但我相信 localhost 应该可以工作。

关于javascript - React-Native-Firebase : RTDB Emulator,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62935494/

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