gpt4 book ai didi

ios - Realm 迁移问题

转载 作者:行者123 更新时间:2023-11-28 18:55:54 57 4
gpt4 key购买 nike

对于加载看似重复的问题,我深表歉意。

我是第一次尝试 Realm - 我创建了一个测试项目来完成它。我向我的模型类添加了另一个属性,然后收到有关需要更改和迁移的错误消息。我按照说明在 AppDelegate 中设置了一些用于迁移的代码(尽管迁移 block 是空的,因为我删除了所有记录)但是在它再次启动后到达我的 ViewController 的那一刻它崩溃了“提供的模式版本 0 小于上一个设置版本1"而我就是无法通过它?

在 var realm = try! 上我的 ViewController 失败了!境界()

我错过了什么?

最佳答案

看来你做得对。根据realm documentation :

At the very minimum all we need to do is to update the version with an empty block to indicate that the schema has been upgraded (automatically) by Realm.

我的猜测是您正在创建配置和迁移,但没有将其设置为默认 Realm 配置,或者设置配置太晚(在实例化一个 Realm 之后)。

基于你得到的错误

Provided schema version 0 is less than last set version 1

似乎根本没有执行迁移。在任何情况下,每次更新架构时,您还应该增加 Realm 配置 中的 schemaVersion。该错误意味着您的配置包含的版本 (0) 低于磁盘中现有数据库的版本 (1)。在这种情况下,您的新配置的 schemaVersion 至少应为 2(高于磁盘版本的任何值)。

在实例化 realm 之前,就像在您的应用委托(delegate)的 application:didFinishLaunchingWithOptions: 中一样,根据您当前的 schemaVersion<,您至少需要如下内容.

let config = Realm.Configuration(
schemaVersion: 2, // Must be greater than previous version
migrationBlock: { migration, oldSchemaVersion in
if (oldSchemaVersion < 1) {
// minimally this can be empty
}
if (oldSchemaVersion < 2) {
// minimally this can be empty
}
print("Realm migration did run") // Log to know migration was executed
})

// Make sure to set the default configuration
Realm.Configuration.defaultConfiguration = config

我还建议您在实例化 realm 之前,在迁移 block 和 View Controller 中进行一些日志记录或设置断点。这样您就可以知道是否曾经执行过迁移。

但是,由于您似乎只是在学习realm,我建议您暂时忽略迁移的细节。为避免这种情况,您可以在更改数据库架构时从设备/模拟器中卸载您的应用程序。只需确保将 schemaVersion 用作 0,您将始终使用全新的数据库,因此不需要迁移。

第二种选择是使用 in-memory realms .这些不会保存到磁盘,因此数据不会在应用程序启动时保持不变,但它仍然像普通的 realm 数据库一样工作。这非常适合早期原型(prototype)制作。要获得其中之一,您只需为您的配置提供一个 inMemoryIdentifier

let config = Realm.Configuration(inMemoryIdentifier: "ThisRealmIsNotStored")
Realm.Configuration.defaultConfiguration = config

关于ios - Realm 迁移问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33131616/

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