3

我已经在标题中添加了下一步,因为这与我之前的问题不同,标题几乎完全相同。

我有一个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

我真的不知道为什么这不起作用。我没有报告任何明智的错误。

4

1 回答 1

17

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 的作者撰写的MagicalRecord 导入文章的后半部分),其中包括import<;attributeName>;:import<;relationshipName>;:. 类本身还有一个willImport:,didImport:和方法,允许您覆盖任何映射。shouldImport:

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

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

请务必导入人员:

#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];
    }
}

希望这可以帮助!如果您有任何问题,请告诉我。

于 2013-05-05T16:39:12.347 回答