使用 SBJSON 解析和检查 JSON
Posted
技术标签:
【中文标题】使用 SBJSON 解析和检查 JSON【英文标题】:JSON parse and check using SBJSON 【发布时间】:2011-07-19 00:29:42 【问题描述】:我有这个 JSON:
"errors": [
],
"warnings": [
],
"data":
"token": "someToken"
,
"page":
"current": 1,
"total": 1
我正在尝试使用 SBJSON 解析令牌。解析它没有问题。但是,在某些情况下,检索到的 JSON 没有令牌值。如何检查该值是否存在,因为如果我不检查我的应用程序与 EXCBadAccess 崩溃。
谢谢!
【问题讨论】:
如果我的回答有什么可以澄清的,请告诉我:) 【参考方案1】:SBJSON 会给你一个 NSDictionary 对象。您只需要检查objectForKey返回的指针是否为nil,还要检查它是否为NSNull(如果值存在,但在JSON中设置为null),您还可以确保数据实际上是一个NSDictionary:
id dataDictionaryId = [resultsDictionary objectForKey:@"data"];
// check that it isn't null ... this will be the case if the
// data key value pair is not present in the JSON
if (!dataDictionaryId)
// no data .. do something else
return;
// then you need to check for the case where the data key is in the JSON
// but set to null. This will return you a valid NSNull object. You just need
// ask the id that you got back what class it is and compare it to NSNull
if ([dataDictionaryId isKindOfClass:[NSNull class]])
// no data .. do something else
return;
// you can even check to make sure it is actually a dictionary
if (![dataDictionaryId isKindOfClass:[NSDictionary class]])
// you got a data thing, but it isn't a dictionary?
return;
// yay ... it is a dictionary
NSDictionary * dataDictionary = (NSDictionary*)dataDictionaryId;
// similarly here you could check to make sure that the token exists, is not null
// and is actually a NSString ... but for this snippet, lets assume it is
NSString * token = [dataDictionary objectForKey:@"token"];
if (!token)
// no token ... do something else
更新
这是我为检查SBJSON解析结果而写的测试代码:
NSError* error = NULL;
id json = [parser objectWithString:@"\"data\":null" error:&error];
NSDictionary * results = (NSDictionary*)json;
id dataDictionaryId = [results objectForKey:@"data"];
if (!dataDictionaryId || [dataDictionaryId isKindOfClass:[NSNull class]])
return NO;
【讨论】:
谢谢,但应用程序仍然崩溃。如果我得到一个令牌,它很好,但如果我不这样做,它仍然会崩溃。这是我在没有令牌时返回的 json:pastie.org/2234627 @Sunil 试过了,发现你得到了一个有效的 NSNull 对象,用于 "data" : null case。所以你只需要检查一下。 你能把你正在使用的代码发给我吗?也许我做错了什么? @Sunil 我添加了我写的测试代码。如果您仍然卡住,请使用调用堆栈和有关崩溃的一些更具体的信息更新您的问题。【参考方案2】:当没有令牌时,尝试打印出 dataDictionary 中的内容。 Peraphs 不是零。 你可以检查 isKindOfClass(NSDictionary),而不是只放 !dataDictionary。
【讨论】:
以上是关于使用 SBJSON 解析和检查 JSON的主要内容,如果未能解决你的问题,请参考以下文章
iOS JSON 解析为 NSDictionary,然后使用 SBJson 解析为 NSArray