我在我的应用程序中收到一些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数据.
在这种情况下,您必须将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"];