我想在我的React Native App上运行Realm Studio。在这里视频,我看到文件Places.realm,但我不知道我生成这个文件? (https://realm.io/products/realm-studio/)
任何人都已经在React Native上使用Realm了吗?
谢谢!
答案 0 :(得分:1)
如果您需要使用Realm Studio检查您的Realm,您可以启用同步(请参阅https://realm.io/docs/javascript/latest/api/Realm.html#~Configuration中的属性sync
)并设置对象服务器(https://realm.io/docs/get-started/installation/developer-edition/)。
另一种方法是使用Chrome和调试,就像使用任何其他React Native应用程序一样。
答案 1 :(得分:1)
iOS 模拟器:
将此代码放在您的 RN 应用程序中的某个位置,以找出领域文件的位置。
import Realm from 'realm';
Realm.open({}).then((realm) => {
console.log('Realm is located at: ' + realm.path);
});
这将在控制台中打印默认领域文件的位置。
转到默认文件所在的目录(您可以使用终端 cd
然后 open
)
该目录将包含一个或多个可以用 Realm Studio 打开的文件。一个文件将包含您从 RN 应用发送到 Realm DB 的数据。
参考:Doc