gpt4 book ai didi

ios - Realm - 无法使用现有主键值创建对象

转载 作者:IT王子 更新时间:2023-10-29 05:25:15 26 4
gpt4 key购买 nike

我有一个对象 Person 和很多狗。应用程序有单独的页面,它只显示狗和其他页面,它显示人的狗

我的模型如下

class Person: Object {
dynamic var id = 0
let dogs= List<Dog>()

override static func primaryKey() -> String? {
return "id"
}
}

class Dog: Object {
dynamic var id = 0
dynamic var name = ""

override static func primaryKey() -> String? {
return "id"
}
}

我将人员存储在 Realm 中。 Person 有详细信息页面,我们可以在其中获取并展示他的狗。如果狗已经存在,我会更新该狗的最新信息并将其添加到人的狗列表中,否则创建新狗,将其保存并将其添加到人列表中。这适用于核心数据。

// Fetch and parse dogs
if let person = realm.objects(Person.self).filter("id =\(personID)").first {
for (_, dict): (String, JSON) in response {
// Create dog using the dict info,my custom init method
if let dog = Dog(dict: dict) {
try! realm.write {
// save it to realm
realm.create(Dog, value:dog, update: true)
// append dog to person
person.dogs.append(dog)
}
}
}
try! realm.write {
// save person
realm.create(Person.self, value: person, update: true)
}
}

在尝试用他的狗更新 person 时,realm 抛出异常无法使用现有主键值创建对象

最佳答案

这里的问题是,即使您正在创建一个全新的 Realm Dog 对象,您实际上并没有将该对象持久化到数据库中,因此当您调用 append,您正在尝试添加第二个副本。

当您调用 realm.create(Dog.self, value:dog, update: true) 时,如果数据库中已存在具有该 ID 的对象,您只需更新该现有对象使用您创建的 dog 实例中的值,但该 dog 实例仍然是一个独立的副本;它不是数据库中的 Dog 对象。您可以通过检查 dog.realm 是否等于 nil 来确认这一点。

所以当你调用 person.dogs.append(dog) 时,因为 dog 不在数据库中,Realm 会尝试创建一个全新的数据库条目,但是失败,因为已经有一只狗具有该 ID。

如果你想把 dog 对象附加到 person 上,就需要查询 Realm 来检索一个合适的 dog 对象那是引用数据库中的条目。值得庆幸的是,这对于由主键支持的 Realm 对象来说真的很容易,因为您可以使用 Realm.object(ofType:forPrimaryKey:) 方法:

if let person = realm.object(ofType: Person.self, forPrimaryKey: "id") {
for (_, dict): (String, JSON) in response {
//Create dog using the dict info,my custom init method
if let dog = Dog(dict: dict)
{
try! realm.write {
//save it to realm
realm.create(Dog.self, value: dog, update: true)
//get the dog reference from the database
let realmDog = realm.object(ofType: Dog.self, forPrimaryKey: "id")
//append dog to person
person.dogs.append(realmDog)
}
}
}
try! realm.write {
//save person
realm.create(person .self, value: collection, update: true)
}
}

关于ios - Realm - 无法使用现有主键值创建对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40592350/

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