3

更新

看来 resultField 是没有价值的。会调查这个,但我仍然很感激任何建议。

原帖

我的任务是开发一个基本的 iOS 应用程序,它只需发出搜索请求,然后显示大学工作的结果。我尝试使用 Google 自定义搜索引擎,但无法让它在 iPhone 上运行,因此我不得不求助于已贬值的 Google Web Search API(讲师对此表示同意)。

现在,我可以发出请求,它会按预期返回 JSON 数据,我认为我现在必须解析这些数据。可悲的是,我只有一周的时间来做这件事,这太疯狂了,因为我以前从未使用过 JSON。

我想要的是,如果有人可以用一两个指针帮助我开始了解如何获得 JSON 数据的基本解析。

我在 Stackoverflow 上环顾四周,看到了一些可能有用的东西,例如此处所选答案中的分解结构。

该人将其放在一起,当代码中显示时,这对我来说很有意义:

一个伟大的结构解释

dictionary (top-level)
     sethostname (array of dictionaries)
         dictionary (array element)
            msgs (string)
            status (number)
            statusmsg (string)
            warns (array)
                ??? (array element)

可悲的是,我什至无法开始对我的应用程序中生成的代码做同样的事情。它采用类似于此示例代码的形式,由google提供- 我不是 Paris Hilton 粉丝!

来自谷歌的示例代码。

{"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;

现在我遇到的主要问题是结果数组一直为空。我真的可以在这里做一个正确的方向。谢谢你。

4

2 回答 2

3

看起来您在遍历从 JSON 中解析出来的数据结构时遇到了问题。

    NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:responseData options:NSJSONWritingPrettyPrinted error:&error];

假设你传入的数据是好的,这dictionary包含了顶层结构。它具有三个键responseDataresponseDetailsresponseStatusNSLog(你可以通过查字典来看到这一点。)

然后,您在该字典中查询 key results。它不存在,因此您的resultField变量设置为nil. 键的dictionaryresponseData是另一个包含键的字典results——你需要那个中间步骤。

此外,results第二个字典中键的值是一个数组(包含更多字典),而不是字典本身。

于 2012-07-28T00:12:42.107 回答
0

无需每次都创建新字典。为了便于阅读,我建议如下:

[[dictionary objectForKey:@"responseData"] objectForKey:@"results"]

那里有一系列结果。然后您可以添加

[ [dictionary objec...] objectAtIndex:0]
于 2014-12-16T19:34:51.747 回答