更新
看来resultField是没有值的那个。将调查此事,但我仍然感谢任何建议。
原帖
我已经设定了一个基本的iOS应用程序的任务,该应用程序只是发出搜索请求,然后显示大学工作的结果。我试图使用谷歌自定义搜索引擎,但永远不能让它在iPhone上工作,所以我不得不求助于折旧的谷歌网络搜索API(讲师没关系)。
现在,我能够发出请求,它会按预期返回JSON数据,我想现在必须解析它。可悲的是,我只有一个星期的时间来做这件事,这很疯狂,因为我之前从未使用过JSON。
我想要的是,如果有人可以用一两个指针来帮我实现如何获得JSON数据的基本解析。
我查看了Stackoverflow,看到了一些可能有用的内容,例如所选答案here中的细分结构。
这个人把它放在一起,这在代码中显示对我来说是有道理的:
一个很棒的结构解释
dictionary (top-level)
sethostname (array of dictionaries)
dictionary (array element)
msgs (string)
status (number)
statusmsg (string)
warns (array)
??? (array element)
可悲的是,我甚至无法对我的应用中生成的代码做同样的事情。它采用类似于此示例代码的形式,由google提供 - 我不是Paris Hilton的粉丝!
来自Google的示例代码。
{"responseData": {
"results": [
{
"GsearchResultClass": "GwebSearch",
"unescapedUrl": "http://en.wikipedia.org/wiki/Paris_Hilton",
"url": "http://en.wikipedia.org/wiki/Paris_Hilton",
"visibleUrl": "en.wikipedia.org",
"cacheUrl": "http://www.google.com/search?q\u003dcache:TwrPfhd22hYJ:en.wikipedia.org",
"title": "\u003cb\u003eParis Hilton\u003c/b\u003e - Wikipedia, the free encyclopedia",
"titleNoFormatting": "Paris Hilton - Wikipedia, the free encyclopedia",
"content": "\[1\] In 2006, she released her debut album..."
},
{
"GsearchResultClass": "GwebSearch",
"unescapedUrl": "http://www.imdb.com/name/nm0385296/",
"url": "http://www.imdb.com/name/nm0385296/",
"visibleUrl": "www.imdb.com",
"cacheUrl": "http://www.google.com/search?q\u003dcache:1i34KkqnsooJ:www.imdb.com",
"title": "\u003cb\u003eParis Hilton\u003c/b\u003e",
"titleNoFormatting": "Paris Hilton",
"content": "Self: Zoolander. Socialite \u003cb\u003eParis Hilton\u003c/b\u003e..."
},
...
],
"cursor": {
"pages": [
{ "start": "0", "label": 1 },
{ "start": "4", "label": 2 },
{ "start": "8", "label": 3 },
{ "start": "12","label": 4 }
],
"estimatedResultCount": "59600000",
"currentPageIndex": 0,
"moreResultsUrl": "http://www.google.com/search?oe\u003dutf8\u0026ie\u003dutf8..."
}
}
, "responseDetails": null, "responseStatus": 200}
这是到目前为止的代码,正如您将快速了解的那样,除了返回与上述代码类似的代码之外,其他功能并不多。
**My code.**
// query holds the search term
query = [query stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
//append theQuery with search URL
NSString *tempString = [NSString stringWithFormat:@"%@/%@", @"https://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=", theQuery];
//Create NSURL out of tempString
NSURL *url = [NSURL URLWithString:tempString];
// Create a request object using the URL.
NSURLRequest *request = [NSURLRequest requestWithURL:url];
// Prepare for the response back from the server
NSHTTPURLResponse *response = nil;
NSError *error = nil;
NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:responseData options:NSJSONWritingPrettyPrinted error:&error];
NSDictionary* resultField = [NSDictionary dictionaryWithDictionary:[dictionary objectForKey:@"results"]];
// Send a synchronous request to the server (i.e. sit and wait for the response)
// Check if an error occurred
if (error != nil) {
NSLog(@"%@", [error localizedDescription]);
// Do something to handle/advise user.
}
// Convert the response data to a string.
NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
NSArray *results = [dictionary objectForKey:@"results"];
//set label's text value to responseString's value.
endLabel.text = responseString;
现在我遇到的主要问题是结果数组一直是null。我真的可以在这里找到正确方向的一点。谢谢。
答案 0 :(得分:3)
看起来你在遍历从JSON解析出来的数据结构时遇到了麻烦。
NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:responseData options:NSJSONWritingPrettyPrinted error:&error];
假设您传入的数据良好,此dictionary
包含顶级结构。它有三个键responseData
,responseDetails
和responseStatus
。 (你可以通过NSLog
ging字典看到这一点。)
然后,您正在查询密钥results
的字典。它不存在,因此您的resultField
变量设置为nil
。密钥dictionary
的{{1}}值是另一个包含密钥responseData
的字典 - 您需要中间步骤。
此外,第二个字典中results
键的值是一个数组(更多字典),而不是字典本身。
答案 1 :(得分:0)
每次都不需要创建新词典。为了便于阅读,我建议使用以下内容:
[[dictionary objectForKey:@"responseData"] objectForKey:@"results"]
你有结果数组。然后,您可以添加
[ [dictionary objec...] objectAtIndex:0]