ios – 解析NSJSONReadingAllowFragments

前端之家收集整理的这篇文章主要介绍了ios – 解析NSJSONReadingAllowFragments前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的应用程序中收到一些json数据:
NSMutableDictionary *json = [NSJSONSerialization JSONObjectWithData:jsonResponse options:NSJSONReadingAllowFragments error:nil];
        NSLog(@"json :%@",json);

哪些日志:

json :{
  "email" : "/apex/emailAttachment?documentId=00PZ0000000zAgSMAU&recipientId=003Z000000XzHmJIAV&relatedObjectId=a09Z00000036kc8IAA&subject=Pricing+Comparison"
}

这正是我想要的.

但是,当我通过这样做去阅读电子邮件的价值时

[json objectForKey:@“email”]

我收到一个无效的参数异常:

Terminating app due to uncaught exception ‘NSInvalidArgumentException’,reason: ‘* -[NSDictionary initWithDictionary:copyItems:]: dictionary argument is not an NSDictionary’

我该如何读取这个值?

解决方法

您的服务器似乎发送“嵌套JSON”:jsonResponse是一个JSON字符串(不是
字典).该字符串的值也是表示字典的JSON数据.

在这种情况下,您必须将JSON反序列化两次:

NSString *jsonString = [NSJSONSerialization JSONObjectWithData:jsonResponse options:NSJSONReadingAllowFragments error:nil];
NSData *innerJson = [jsonString dataUsingEncoding:NSUTF8StringEncoding];
NSDictionary *jsonDict = [NSJSONSerialization JSONObjectWithData:innerJson options:0 error:nil];

NSString *email = jsonDict[@"email"];
原文链接:https://www.f2er.com/iOS/335494.html

猜你在找的iOS相关文章