问题标签 [realm-mobile-platform]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ios - Different Realm Configurations Appearing in Swift App
Swift 3, Xcode 8, RealmSwift 2.0.2, Realm Object Server 1.0
In my app delegate, I have a function that sets my Realm configuration to connect to a remote sync server I have set up. I'm just using a test account to authenticate until I can get the basics of sync working. 1.1.1.1
isn't my real IP address. ;)
This seems to work fine. I see data appear on my server, and I get no errors. My assumption is that setting the Realm configuration here means that all instances of Realm()
will use this configuration.
I then set a realm
object as a class property in two separate view controllers:
...and another in another file:
As noted in the code comments above, the two instances of realm
are different. On some of my view controllers, I can save objects to the server and see them appear on my device. On other view controllers, I don't see any data because it's using the wrong Realm database.
Can I not reliably expect a Realm configuration to persist throughout my app? Do I need to do something else to use the same configuration?
swift - 同步领域 - 飞行模式
例如,在文档中找不到关于回退到同步领域的本地缓存版本的任何内容。该应用程序以飞行模式启动。我错过了什么吗?
realm - 如何从领域对象服务器中完全删除某些特定数据库
我需要从领域对象服务器中删除特定的数据库。
我尝试重新安装领域对象服务器,但看起来它没有触及现有数据库。所以在我重新安装后,我仍然可以看到我的领域。仪表板目前不提供管理工具。
那么如何删除领域?
ios - Realm 如何将现有的用户数据添加到移动平台?
我目前在 iOS 应用程序中使用 Realm 作为离线数据库。
如果我要添加对 Realm 移动平台的支持,它会自动抓取所有 Realm 用户数据并将其迁移到云端吗?
或者
是否需要一些代码将数据移动到云端?
android - 领域无法用户注销
我的领域 java 版本有问题。我尝试将它与 Realm 移动平台一起使用。
我可以使用以下身份验证注册和登录:
但是当我想注销当前用户时:
当前用户始终使用旧用户值定义。我怎样才能删除这个用户?
react-native - 不在 Realm 中创建多个表。
我正在使用 React native 创建 Realm 数据库表。我创建表的功能是,
我调用这个方法,
当我在 3 个创建表方法上逐一运行时,我MstUnitType
在文件中只得到了其他 2 个表未创建的表。defualt.realm
realm - Realm 移动平台的服务器复制
我正在编写一个需要能够离线操作的移动数据库应用程序。Realm 移动平台(开发者版)看起来是简化后端的一个有趣的可能性。
但是,我有提供实时冗余服务器的认证要求,并且我在 Realm 文档中没有看到有关服务器复制或高可用性的任何内容。该数据库似乎存储在一个整体文件中,因此我怀疑尝试物理复制实时数据库是否安全。
该产品是否支持服务器复制或其他方式来实现到冗余服务器的故障转移?
ios - 使用 Realm,我应该使用 List 对象还是 Results 对象作为 UITableView 的数据源?
Realm中至少使用了 2 种主要的集合类型:
对象文档中的相关描述Results
说:
结果是从对象查询返回的 Realm 中的自动更新容器类型。
因为我希望 myUITableView
响应 Realm Object Server 上的任何更改,所以我真的认为我希望 myUITableView
得到一个Results
对象的支持。事实上,Results
出于这个原因,我认为我总是想要一个对象来支持我的 UI。这仅通过List
文档中的对象描述得到加强:
List 是 Realm 中用于定义对多关系的容器类型。
当然似乎 aList
专注于数据建模......所以,作为 Realm 的新手并且只是阅读 API,我认为答案是使用该Results
对象,但教程(第 5 步)使用该List
对象,而RealmExamples示例代码使用Results
.
我错过了什么?我应该使用List
对象来支持我的UITableViews
吗?如果有,原因是什么?
realm - 如何在 ios 项目中停用我的 Realm 数据库的同步?
我有带有 Realm 移动数据库的 iOS 应用程序。我们已经集成了Realm实时同步,需要在应用程序中放置一个关闭同步的开关。
应用程序应在离线模式下正常工作。我们怎么能做到这一点?我们如何在没有 RLMSyncUser 的情况下创建 Realm?
realm-mobile-platform - 领域对象服务器 - 如何获取服务器管理员访问令牌?
我已经在 Ubuntu 上安装了 ROS。不幸的是,我认为我保存了管理员访问令牌的文档是空白的!:(
有谁知道如何再次获得这个令牌值?还是重新生成?