在 IOS 中解析嵌套的 JSON 代码

Posted

技术标签:

【中文标题】在 IOS 中解析嵌套的 JSON 代码【英文标题】:Parse nested JSON code in IOS 【发布时间】:2013-04-15 20:28:24 【问题描述】:

我正在尝试在 ios 中解析以下 JSON 代码。 JSON 代码由编号为 0 到 x 的游戏数组组成。我一直在四处寻找,但似乎找不到任何具有这种格式的 JSON 的示例。


"command":"show_my_games",
"0":"gameid":"7","foruserid":"16","againstuserid":"0","casefor":"","caseagainst":"","status":"0","argumentid":"7","againstusername":null,"forusername":"Gem","argument":"argument 1",
"1":"gameid":"8","foruserid":"15","againstuserid":"16","casefor":"","caseagainst":"","status":"0","argumentid":"23","againstusername":"Gem","forusername":"Nick","argument":"argument 2",
"2":"gameid":"9","foruserid":"18","againstuserid":"16","casefor":"","caseagainst":"","status":"0","argumentid":"26","againstusername":"Gem","forusername":"Nick","argument":"argument 3"

我创建了一个游戏对象,对于 JSON 数组中的每个项目,我想创建一个新的游戏对象,并将其添加到游戏数组中。我在解析 JSON 时遇到问题,如果有任何帮助或建议,我将不胜感激。

我尝试使用的代码是

            NSMutableDictionary *json = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:&err];

            for (NSMutableDictionary * gameItem in json) 
                Game *obj = [Game new];
                obj.GameID=[gameItem objectForKey:@"gameid"];
                obj.Argument=[gameItem objectForKey:@"argument"];
                obj.CaseFor=[gameItem objectForKey:@"casefor"];
                obj.CaseAgainst=[gameItem objectForKey:@"caseagainst"];
                obj.CaseForOwner=[gameItem objectForKey:@"forusername"];
                obj.CaseAgainstOwner=[gameItem objectForKey:@"againstusername"];
                obj.CaseForOwnerID=[gameItem objectForKey:@"foruserid"];
                obj.CaseAgainstOwnerID=[gameItem objectForKey:@"againstuserid"];
                //add to the players game array
                [myGameArray addObject:obj];

            
            NSLog(@"array: %@", myGameArray);

当我尝试从 JSON 数组中提取数据时,我收到以下错误。 -[__NSCFString objectForKey:]: 无法识别的选择器发送到实例 0x1f06f4e0

提前致谢,

尼克

【问题讨论】:

剥洋葱,一次一层。您的最外层结构是字典,而不是数组。它有名为“1”、“2”、“3”和“command”的字典元素。 而“command”字典条目的值为“show_my_games”,是一个字符串,因此报错。 【参考方案1】:

代码中断,因为键 command 的对象不是字典。

您可以像这样修改代码。

    for (NSString *key in json)
        id object = json[key];
        if ([object isKindOfClass:[NSDictionary class]]) 
           Game *obj = [Game new];
           obj.GameID=[gameItem objectForKey:@"gameid"];
           obj.Argument=[gameItem objectForKey:@"argument"];
           obj.CaseFor=[gameItem objectForKey:@"casefor"];
           obj.CaseAgainst=[gameItem objectForKey:@"caseagainst"];
           obj.CaseForOwner=[gameItem objectForKey:@"forusername"];
           obj.CaseAgainstOwner=[gameItem objectForKey:@"againstusername"];
           obj.CaseForOwnerID=[gameItem objectForKey:@"foruserid"];
           obj.CaseAgainstOwnerID=[gameItem objectForKey:@"againstuserid"];
           //add to the players game array
          [myGameArray addObject:obj];
    

我建议在您的 Game 类中创建一个 initWithDictionary:(NSDictionary *)dictionary 以获得更简洁的代码。

【讨论】:

【参考方案2】:

您需要将类型gameItem“NSMutableDictionary”更改为“id”并添加检查-if ([gameItem isKindOfClass: [NSDictionary Class]]),在这种情况下初始化“obj

【讨论】:

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

使用 Mantle 在 iOS 中解析嵌套的 json

在 iOS 的 RestKit 中解析嵌套的 JSON

如何在 Ios 中解析数组数据中的嵌套 Json 对象

如何解析嵌套的 JSON 对象?

IOS/Swift/JSON:使用 swiftyJSON 解析嵌套的 JSON

IOS JSON解析嵌套数据