无法解析嵌套的 JSON

Posted

技术标签:

【中文标题】无法解析嵌套的 JSON【英文标题】:Can't get head around parsing nested JSON 【发布时间】:2014-06-06 01:41:08 【问题描述】:

我很难理解这个问题:

所以我有以下 JSON:

"posts": [

  "id": 42400,
  "type": "post",
  "url": "http://dummy.com/noticias/2014/06/senado-promulga-emenda-contra-trabalho-escravo-42400/",
  "status": "publish",
  "title": "Lorem ipsum dolor sit amet, consectetur adipisicing elit",
  "title_plain": "Lorem ipsum dolor sit amet, consectetur adipisicing elit",
  "content": "<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit</p>",
  "excerpt": "<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit</p>",
  "date": "2014-06-05 16:59:55",
  "modified": "2014-06-05 17:00:42",
  "author": 
    "id": 2,
    "slug": "author",
    "name": "Author",
    "first_name": "Author",
    "last_name": "",
    "nickname": "Author",
    "url": "",
    "description": ""
  ,
  "thumbnail_images": 
    "full": 
      "url": "http://dummy.com/wp-content/uploads/2014/06/pec-trabalho-escravo.jpg",
      "width": 585,
      "height": 390
    ,
    "thumbnail": 
      "url": "http://dummy.com/wp-content/uploads/2014/06/pec-trabalho-escravo-110x110.jpg",
      "width": 110,
      "height": 110
    ,
    "medium": 
      "url": "http://dummy.com/wp-content/uploads/2014/06/pec-trabalho-escravo-230x130.jpg",
      "width": 230,
      "height": 130
    ,
    "large": 
      "url": "http://dummy.com/wp-content/uploads/2014/06/pec-trabalho-escravo-585x360.jpg",
      "width": 585,
      "height": 360
    ,
    "slider-thumb": 
      "url": "http://dummy.com/wp-content/uploads/2014/06/pec-trabalho-escravo-520x390.jpg",
      "width": 520,
      "height": 390
    
    
,

这就是我解析这个 JSON 的方式:

NSDictionary *parsedObject = [NSJSONSerialization JSONObjectWithData:objectNotation options:0 error:&localError];

if (localError != nil ) 
    *error = localError;
    return nil;


NSMutableArray *posts = [[NSMutableArray alloc] init];
NSArray *results = [parsedObject valueForKey:@"posts"];

for (NSDictionary *postDic in results) 

    Data *data = [[Data alloc] init];
    for (NSString *key in postDic) 
        if ([data respondsToSelector:NSSelectorFromString(key)]) 
            [data setValue:[postDic valueForKey:key] forKey:key];
        
    

    [posts addObject:data];


return posts;

我似乎无法理解的是如何访问“thumbnail_images”中的第一个值,即“full”,然后获取它的“url”值。

【问题讨论】:

您在 JSON 列表中省略了最初的 ,它标志着“对象”的开始。观察 JSON 字符串中的所有字符很重要。 至于怎么解析,像洋葱一样剥,一层一层。你有外部字典,然后是一个数组,然后是包含更多字典的内部字典。仔细观察筑巢。你这样做的方式只对相当“扁平”的 JSON 有效,而上面的不是。 @HotLicks 您是否建议在 Data.h 模型中存储这些项目的不同方法?是的,我省略了开头的 there sorry 首先,大约有一半的时间没有令人信服的理由不简单地将数据保留为已解析的数组和字典。它们非常简单且访问起来相当有效。 如何分离和可视化存储在 *data 中的数据:for (NSString *key in postDic) if ([data respondsToSelector:NSSelectorFromString(key)]) [data setValue:[ postDic valueForKey:key] forKey:key]; 【参考方案1】:

JSONObjectWithData 方法创建一个由嵌套的NSArrays 和NSDIctionarys 组成的对象。要提取感兴趣的项目,您必须深入研究对象,反复提取数组和字典,直到达到您想要的任何内容。对数组和字典使用现代语法使这相对容易。

另请注意,错误返回仅在JSONObjectWithData 的返回值为nil 时才有效。

NSDictionary *parsedObject = [NSJSONSerialization JSONObjectWithData:objectNotation options:0 error:&localError];

if ( parsedObject == nil )

    *error = localError;
    return nil;


NSMutableArray *results = [NSMutableArray new];
NSArray *posts = parsedObject[@"posts"];

for ( NSDictionary *post in posts )

    NSDictionary *thumb = post[@"thumbnail_images"];
    NSDictionary *full  = thumb[@"full"];
    NSString *urlString = full[@"url"];
    NSLog( @"%@", urlString );

    [results addObject:urlString];


return [results copy];

【讨论】:

我完全了解如何访问嵌套对象,谢谢@user3386109 =)【参考方案2】:

键“posts”有一个 NSArray 作为它的值,它是你的名为 results 的变量。结果数组的每个索引都可以包含一个数组或字典。

thumbnail_images 在索引 1 处,所以你可以像这样NSDictionary *thumbImages = results[1];

从这里开始,您可以像这样访问所有您想要的嵌套键。所以对于“full”然后是“url”:NSString *url = thumbImages[@"thumbnail_images"][@"full"][@"url"];

【讨论】:

【参考方案3】:

可以检查对象是否为字典,然后遍历:

for (NSDictionary *postDic in results) 

Data *data = [[Data alloc] init];
for (NSString *key in postDic) 
    if ([data respondsToSelector:NSSelectorFromString(key)]) 
        if ([results[postDic] isMemberOfClass:[NSDictionary class]) 
            // At this point you will get the "full", "thumbnail", etc dictionaries
            NSDictionary *childDict = results[postDic];
            //Now you can just do the same thing once again to get the url value.
        
        [data setValue:[postDic valueForKey:key] forKey:key];
    


[posts addObject:data];

【讨论】:

以上是关于无法解析嵌套的 JSON的主要内容,如果未能解决你的问题,请参考以下文章

Mantle 2.0 无法为嵌套数组中的符号解析 JSON

我无法解析应用程序中 JSON 的嵌套类中的 mag 以及地点和时间,它们都将值显示为 null

嵌套的Angular模块:无法解析npm包中的服务

无法使用闭包使用 alamofire 解析 json

logstash解析嵌套json的问题

使用嵌套的字典和列表解析 JSON