2

我有一个Parent继承自的模型NSManagedObject和一个Child继承自 的模型Parent

这是Parent映射:

RKManagedObjectStore* store = [RKObjectManager sharedManager].objectStore;
RKManagedObjectMapping* mapping = [RKManagedObjectMapping mappingForEntityWithName:@"Parent" inManagedObjectStore:store];
[mapping mapKeyPath:@"id" toAttribute:@"id"];
[[RKObjectManager sharedManager].mappingProvider addObjectMapping:mapping];

Child映射:

RKManagedObjectStore* store = [RKObjectManager sharedManager].objectStore;
RKManagedObjectMapping* mapping = [RKManagedObjectMapping mappingForEntityWithName:@"Child" inManagedObjectStore:store];
[[RKObjectManager sharedManager].mappingProvider setMapping:mapping forKeyPath:@"child"];

然后,当我尝试将以下 JSON 对象映射到Child实例时:

{
  "child": {
    "id": 7
  }
}

在 RestKit 跟踪中,我看到以下映射Child

mappings => ()

为什么映射不从Child映射继承Parent?如何使映射继承工作?

4

1 回答 1

2

简而言之,它不起作用,因为 RestKit 不支持它,我认为不应该。

如果您希望子映射具有父映射,您也可以将其添加到子映射中,如果您独立编写它们,这是一行额外的代码,或者如果您使用该mapKeyPathsToAttributes:方法,则只需几个额外的字符。

关于您的具体示例,有一点很重要。一个是你不应该使用'id'作为你的属性名称,因为 id 在 ObjC 中是保留的(我不肯定它实际上会导致问题,但至少在代码中看到它会令人困惑)。

因此,RestKit 中有一个标准的约定来映射“id”属性,即将实体的名称添加到属性之前,即Parent会有一个parentID属性并且Child会有一个childID属性。仅此一点就说明了为什么在一般情况下继承这些属性(尤其是主键!)不是一个好主意。

此外,RESTful 服务器通常有某种基于 SQL 的后端,它可能支持也可能不支持 Core Data 所具有的实体继承,从而使对象从设备映射到服务器上的数据的方式变得复杂。例如,Rails 可以在一定程度上处理 STI,但任何比这更复杂的东西都需要 gems 或 hacks。

编辑:(取自 github 问题)如果有人发现这个正在寻找继承的方法,有一种相对简单的方法可以基于其他映射创建映射:

RKManagedObjectMapping* parentMapping = [RKManagedObjectMapping mappingForEntityWithName:@"Child" inManagedObjectStore:store];
parentMapping.primaryKeyAttribute = @"parentID";
[parentMapping mapKeyPathsToAttributes: @"id", @"parentID", @"property_one", @"propertyOne", @"parent_only_property", @"parentOnlyProperty"];
[[RKObjectManager sharedManager].mappingProvider setMapping:mapping forKeyPath:@"parent"];

RKManagedObjectMapping* childMapping = [parentMapping copy];
childMapping.primaryKeyAttribute = @"childID";
[childMapping removeMapping:[childMapping mappingForAttribute:@"parentID"]];
[childMapping removeMapping:[childMapping mappingForAttribute:@"parentOnlyProperty"];
[childMapping mapKeyPathsToAttributes:@"id", @"childID", @"child_only_property", @"childOnlyProperty"];
[[RKObjectManager sharedManager].mappingProvider setMapping:childMapping forKeyPath:@"child"];
于 2012-07-19T19:15:33.780 回答