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