gpt4 book ai didi

ios - 魔法记录导入(下一步)

转载 作者:可可西里 更新时间:2023-11-01 06:18:29 26 4
gpt4 key购买 nike

我将下一步放在标题中,因为这与我之前标题几乎完全相同的问题不是同一个问题。

我有一个 Person 实体。

Person
--------
name - mappedKeyName: FullName
email - mappedKeyName: EmailAddress
personID - mappedKeyName: Id
--------
photos

还有一个 Photo 实体。

Photo
--------
image
createDate - mappedKeyName: Date
photoID - mappedKeyName: Id
--------
owner (type Person) - mappedKeyName: UserId - relatedByAttribute: personID

还有其他对象也与 Person 相关,这些对象的 JSON 也是如此......

{
ObjectId : blah,
Owner : {
Id : 12345asdfg,
FullName : Oliver,
EmailAddress : oliver@oliver.com
}
}

有了这个 JSON,我的设置就可以导入了。创建任何不存在的人员记录(带有 Id)。任何确实存在的都会更新。

然而,照片 JSON 对象是这样的......

{
Id : thisIsThePhotoID,
Date : today,
UserId : 12345asdfg
}

当物体像这样落下时,魔法记录导入在到达人物导入时停止。

代码崩溃于...

- (id) MR_relatedValueForRelationship:(NSRelationshipDescription *)relationshipInfo
{
NSString *lookupKey = [self MR_lookupKeyForRelationship:relationshipInfo];
return lookupKey ? [self valueForKeyPath:lookupKey] : nil; // it stops here.
}

lookupKey的值为@"personID"。

在断点处打印出 relationshipInfo 给出...

$6 = 0x1fd695e0 (<NSRelationshipDescription: 0x1fd695e0>),
name owner,
isOptional 0,
isTransient 0,
entity Photo,
renamingIdentifier owner,
validation predicates (),
warnings (),
versionHashModifier (null)
userInfo {
mappedKeyName = UserId;
relatedByAttribute = personID;
},
destination entity Person,
inverseRelationship photos,
minCount 1,
maxCount 1,
isOrdered 0,
deleteRule 1

我真的不知道为什么这不起作用。我没有收到任何需要报告的合理错误。

最佳答案

MagicalRecord 无法使用此 JSON 格式自动映射关系:

{
Id : thisIsThePhotoID,
Date : today,
UserId : 12345asdfg
}

为了让 MagicalRecord 将关系映射到 Person对象,它也必须是 JSON 中的对象,例如:

{
Id : thisIsThePhotoID,
Date : today,
User : {
UserId : 12345asdfg
}
}

这样 MagicalRecord 就知道它是一个对象,它会在现有数据库中为 Person 进行适当的查找。用上面的ID记录并映射关系。

不过,这有两个问题。如果您无法更改 JSON 输出,则必须在 Photo 上创建类别类您自己手动映射关系的地方。我会在第二期之后谈到这一点。

第二个问题是上面的 JSON 格式假定您已经解析了用户并将记录存储在数据库中。如果您还没有 MagicalRecord 将创建一个新的 Person使用上述 ID 进行记录,但由于该对象上不存在其他属性(注意 UserId 键是字典中的唯一属性),它将相当空,并且不包括姓名和电子邮件地址。您始终可以扩展您的 JSON(如果您有这种可能性)以将这些属性也包括在 Photo 字典内的 Person 字典中:

{
Id : thisIsThePhotoID,
Date : today,
User : {
UserId : 12345asdfg,
FullName : Oliver,
EmailAddress : oliver@oliver.com
}
}

JSON 有效负载非常小,因此如果可以的话这样做也没什么坏处。另外它只会创建一个新的 Person如果数据库中不存在则记录。

然后进行手动映射。如果您无法将 JSON 更改为上述格式,则必须手动覆盖关系映射,因为 JSON 未按照 MagicalRecord 映射的方式准备。

Photo 创建类别类称为 Photo+Mapping.h/.m .我喜欢坚持 +Mapping对于这些。那么类应该是Photo (Mapping)在头文件和实现文件中,您就可以开始了。

MagicalRecord有很多实例方法可以重写(参见MagicalRecord作者写的this article on MagicalRecord importing的后半部分),其中有import<;attributeName>;:import<;relationshipName>;: .还有一个willImport: , didImport:shouldImport:类本身的方法,允许您覆盖任何映射。

对于您的情况,您可以使用 import<;relationshipName>;:shouldImport: .我选择了这两个,因为其中一个有一点好处,具体取决于您是否已经映射了所有 Person。对象,它们可用于 Photo 上的关系映射对象。

以下是您可以执行的操作的示例(如果您愿意,可以选择组合其中的一些,这样做没有坏处)。此处注意:始终 使用当前的 NSManagedObjectContext当覆盖映射时(通过 self.managedObjectContext 可以通过 MagicalRecord 轻松访问),否则您最终会遇到上下文问题。

一定要导入 Person:

#import "Photo+Mapping.h"
#import "Person.h"

// Assuming you only want to import the Photo object if you already have a Person stored this is a great method to tell MagicalRecord whether to continue with importing or not
-(BOOL)shouldImport:(id)data {
Person *person = [Person findFirstByAttribute:data[@"UserId"] value:@"personID" inContext:self.managedObjectContext];
if (!person) {
// no Person object exists so don't import the Photo object - again this is up to you since you might want to create the record if not
return NO;
}
// you can set the relationship here (you might as well) or use the importPerson: method below (doing a second lookup, which is unnecessary at this point)
[self setPerson:person];
return YES;
}

// If you use this method you're doing the lookup to check whether a record exist when MagicalRecord is trying to map the Person relationship
-(void)importPerson:(id)data {
Person *person = [Person findFirstByAttribute:data[@"UserId"] value:@"personID" inContext:self.managedObjectContext];
if (!person) {
// if no Person record exists for the associated UserId, you should create one (or not - if you choose not to, it's wise to throw away this Photo object)
person = [Person createInContext:self.managedObjectContext];
[person setPersonID:data[@"UserId"]];
}
// set the relationship
[self setPerson:person];
}

// finally you can also use the following method when MagicalRecord is done mapping and get rid of the Photo object if the Person relationship is nil:
-(void)didImport:(id)data {
if (!self.person) {
[self deleteInContext:self.managedObjectContext];
}
}

希望对您有所帮助!如果您有任何问题,请告诉我。

关于ios - 魔法记录导入(下一步),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16337837/

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