gpt4 book ai didi

ios - 在 Realm 中更新表

转载 作者:行者123 更新时间:2023-12-01 20:02:25 29 4
gpt4 key购买 nike

我只是在学习为ios编程。需要建议,我阅读了json响应,如下所示:

[{
"id": 1,
"title": "Book1",
"author": "BookAuthor1",
"chapters": [
"Chapter1",
"Chapter2",
"Chapter3",
"Chapter4",
"Chapter5"
]
},
{
"id": 2,
"title": "Book2",
"author": "BookAuthor2",
"chapters": [
"Mychapter1",
"Mychapter2",
"Mychapter3",
"Mychapter4",
"Mychapter5"
]
}]

我为该领域建模:
//Book.h
@interface Book : RLMObject

@property NSInteger bookID;
@property NSString *title;
@property NSString *author;
@property RLMArray<Chapter> *chapters;

@end
RLM_ARRAY_TYPE(Book)
//Book.m
@implementation Book

+ (NSString *)primaryKey {
return @"bookID";
}

@end

//Chapter.h
@interface Chapter : RLMObject

@property NSString *chapterTitle;

@end
RLM_ARRAY_TYPE(Chapter)

//Chapter.m
@implementation Chapter
@end

如何调整模型以进行升级,两个表中的数据都被更新?现在当我做
[Book createOrUpdateInRealm: defaultRealm withValue: newBook];

发生只有包现在提供了Book表,并且在Chapter新表中又添加到了新数据(重复数据)中。在“章节”数组中,只有“章节”的名称(没有ID)可用于primaryKey。在这种情况下可以做什么?

最佳答案

因为您没有Chapter的主键。 Realm不知道要更新什么。因此,Realm只是通过向表中添加新的Chapter来完成其工作。
我建议您也为Chapter添加主键。

关于ios - 在 Realm 中更新表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39662237/

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