2

我很难映射一个特殊情况这与这里的问题完全相同

product:{
     "id": 123,
     "name": "Produce RestKit Sample Code",
     "description": "We need more sample code!",
     "tasks": [
         {"name": "Identify samples to write", "assigned_user_id":1},
         {"name": "Write the code", "assigned_user_id": 1},
         {"name": "Push to Github", "assigned_user_id": 1},
         {"name": "Update the mailing list", "assigned_user_id": 1}]
}

所以我为一个任务对象创建了映射。我为与任务 NSSET 相关的产品对象创建了映射。

但是现在每次解析新数据时,都会在核心数据中重复任务。(正常原因没有ID)

两种解决方案:

  1. 如果发现新任务,我可以删除当前产品的任务。
  2. 我可以使用产品 ID 创建任务 ID

我不知道如何实施这些解决方案。任何帮助都会很棒。

4

1 回答 1

1

我不太确定您如何映射此任务对象,但我NSData通过以下方式使用 JSON 字符串解析:

NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data
                                                           options:0
                                                             error:&error];

在这种情况下,我得到一个NSDictionary带有一个键的“产品”,而该键的对象是另一个字典。NSDictionary具有“任务”键的对象是四个NSArray对象NSDictionary中的一个。

现在,该 JSON 摘录不是有效的 JSON,但我认为它只是更广泛的 JSON 文件的一部分。但出于测试目的,我们假设 JSON 文件如下:

{
    "product" : {
        "id": 123,
        "name": "Produce RestKit Sample Code",
        "description": "We need more sample code!",
        "tasks": [
                  {"name": "Identify samples to write", "assigned_user_id": 1},
                  {"name": "Write the code", "assigned_user_id": 1},
                  {"name": "Push to Github", "assigned_user_id": 1},
                  {"name": "Update the mailing list", "assigned_user_id": 1}]
    }
}

然后我可以像这样解析那个 JSON:

NSString *filename = [[NSBundle mainBundle] pathForResource:@"13628140" ofType:@"json"];
NSData *data = [NSData dataWithContentsOfFile:filename];
NSError *error;
NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data
                                                           options:0
                                                             error:&error];

NSDictionary *product = dictionary[@"product"];
NSArray *tasks = product[@"tasks"];
NSDictionary *firstTask = tasks[0];
NSString *firstName = firstTask[@"name"];
NSString *firstAssignedUserId = firstTask[@"assigned_user_id"];

或者,如果您想枚举任务:

NSDictionary *product = dictionary[@"product"];
NSArray *tasks = product[@"tasks"];

[tasks enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
    NSDictionary *task = obj;
    NSLog(@"Task \"%@\" is assigned to %@", task[@"name"], task[@"assigned_user_id"]);
}];

您只是在问如何将其存储NSArraytasksCore Data 中吗?

于 2012-11-29T14:51:11.847 回答