ios - 如何在对象内部映射 JSON 数据对象?

标签 ios objective-c arrays json

我正在尝试从 API 调用中获取一些数据并将这些对象映射到模型对象。在我的例子中,我在一个对象中有一个对象。这是有效的并收到了 JSON。它与第一个对象的映射很好。在我的 JSON 中,我有一个数组和另一个数组。所以我做了以下事情来完成这件事。

对象映射

+(NSArray *)fromJSON:(NSDictionary *)objectNotation error:(NSError *__autoreleasing *)error{
    NSError *localError = nil;

    NSDictionary *parsedObject = [[NSDictionary alloc] initWithDictionary:objectNotation];

    if (localError != nil) {
        *error = localError;
        return nil;
    }
    NSMutableArray *posts = [[NSMutableArray alloc] init];

    NSArray *results = [parsedObject valueForKey:@"data"];
    NSLog(@"Count %lu", (unsigned long)results.count);

    for (NSDictionary *groupDic in results) {
        Post *post = [[Post alloc] init];
        post.postBody = [NSMutableArray array];

        for (NSString *key in groupDic) {
            if ([post respondsToSelector:NSSelectorFromString(key)]) {
                [post setValue:[groupDic valueForKey:key] forKey:key];
            }
        }
        [posts addObject:post];
    }
    return posts;
}

由于 for 循环,这个生成的元数据比我预期的要多。

模型类

@interface OCPost : NSObject
@property(nonatomic) NSInteger postId;
@property(nonatomic) NSInteger userId;
@property(nonatomic) NSInteger points;
@property(strong, nonatomic) NSMutableArray *body;
@end

我想将 body 数组映射到 Body 对象数组。在我的 body 课上

@interface Body : NSObject
@property (strong, nonatomic) NSString *value;
@property (strong, nonatomic) NSString *name;
@property (strong, nonatomic) NSMutableArray *metaData;
@end

而且 元数据 应该与以下对象映射。

@interface MetaData : NSObject
@property (strong, nonatomic) NSString *title;
@property (strong, nonatomic) NSString *metaDataDescription;
@end

我怎样才能制作出像这样的对象

Post
  |_Body1
  |  |_MetaData1
  |  |_MetaData2
  |  |_MetaData3
  |_Body3
  |  |_MetaData1
  |  |_MetaData2

请帮忙。

JSON

{
   "message": "Post ",
   "data": [
      {
        "postId": 1,
        "timestamp": "2016-06-14 22:37:02",
        "body": [
          {
            "textId": 1,
            "type": "link",
            "deleting": false,
            "metaData": [
          {
            "metadataId": 1,
            "type": "text",
            "value": "under "
          }
          ]
        },
        {
           "textId": 2,
           "type": "department",
           "deleting": false,
           "metaData": [
              {
                "metadataId": 2,
                "type": "text",
                "value": "under "
              }
           ]
        }
      ]
    }
  ]
}

最佳答案

好的,您可以解析 JSON 并将其手动映射到您的数据模型。
方法如下:

+(NSArray *)fromJSON:(NSDictionary *)objectNotation error:(NSError *__autoreleasing *)error{
    NSError *localError = nil;

    NSDictionary *parsedObject = [[NSDictionary alloc] initWithDictionary: objectNotation];

    if (localError != nil) {
        *error = localError;
        return nil;
    }
    NSMutableArray *posts = [[NSMutableArray alloc] init];

    NSArray *results = [parsedObject valueForKey:@"data"];
    NSLog(@"Count %lu", (unsigned long)results.count);

    for (NSDictionary *groupDic in results) {
        OCPost *post = [[OCPost alloc] init];
        post.body    = [NSMutableArray array];

        //1. Parse bodies
        NSArray *bodies = groupDic[@"body"];

        for (NSDictionary *aBody in bodies) {
            Body *body    = [[Body alloc] init];
            body.value    = aBody[@"textId"];
            body.name     = aBody[@"type"];
            body.metaData = [@[] mutableCopy];

            //2. Parse metadatas
            NSArray *metadatasOfBody = aBody[@"metaData"];

            for (NSDictionary *aMetadata in metadatasOfBody) {
                MetaData *metadata           = [[MetaData alloc] init];
                metadata.title               = aMetadata[@"type"];
                metadata.metaDataDescription = aMetadata[@"value"];

                //3. Add metadata to body
                [body.metaData addObject:metadata];
            }

            //4. Add body to post
            [post.body addObject: body];
        }

        //Logs to check post body and body metadata
        NSLog(@"post %@", post);
        NSLog(@"post body %@", post.body);

        for (Body *body in post.body) {
            NSLog(@"post body metadata %@", body.metaData);
        }

        //5. Add post to posts
        [posts addObject: post];
    }

    //Log to check return posts
    NSLog(@"posts %@", posts);

    return posts;
}

要测试它,您可以将 JSON 表示为 NSDictionary,如下所示:

- (NSDictionary*) aJSON
{
    return @{
        @"message": @"Post ",
        @"data": @[
                 @{
                 @"postId": @1,
                 @"timestamp": @"2016-06-14 22:37:02",
                 @"body": @[
                          @{
                          @"textId": @1,
                          @"type": @"link",
                          @"deleting": @false,
                          @"metaData": @[
                                       @{
                                       @"metadataId": @1,
                                       @"type": @"text",
                                       @"value": @"under "
                                       }
                                       ]
                          },
                          @{
                          @"textId": @2,
                          @"type": @"department",
                          @"deleting": @false,
                          @"metaData": @[
                                       @{
                                       @"metadataId": @2,
                                       @"type": @"text",
                                       @"value": @"under "
                                       }
                                       ]
                          }
                          ]
                 }
                 ]
        };
}

objectNotation 替换为 [self aJSON] 以便能够在不调用服务器 API 的情况下测试映射,或者当然,调用服务器 API 端点,并尝试使用响应进行测试JSON.

关于ios - 如何在对象内部映射 JSON 数据对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37846858/

相关文章:

ios - KeychainItemWrapper 奇怪的行为,相同项目的现有/不存在项目错误

ios - 动态更改 CATextLayer 的文本

ios - 在 MPMoviePlayerController 之上添加 View

c - 字符数组的状态

javascript - 带控件的 jQuery 图像数组循环

iphone - 如何更改 AppleID 以检索配置文件

ios - IAP 恢复自定义交易

ios - 一次从所有 Collection View 单元格内的 TextView 中获取文本

ios - 使用 RestKit 映射 url

javascript - 计算对象中值的更智能方法(JS、React)