gpt4 book ai didi

ios - 使用 JSON 的 iOS 谷歌搜索

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:06:53 25 4
gpt4 key购买 nike

更新

resultField 似乎没有任何值(value)。将对此进行调查,但我仍然非常感谢任何建议。

原帖

我的任务是设计一个基本的 iOS 应用程序,该应用程序只需发出搜索请求,然后显示大学作业的结果。我尝试使用 Google 自定义搜索引擎,但始终无法在 iPhone 上使用它,所以我不得不求助于已贬值的 Google Web Search 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 提供- 我不是帕丽斯·希尔顿的粉丝!

来自 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;

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

最佳答案

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

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

假设您传入的数据是好的,这个字典 包含顶级结构。它具有三个键 responseDataresponseDetailsresponseStatus。 (你可以通过NSLog字典查看。)

然后您将在该字典中查询关键结果。它不存在,因此您的 resultField 变量设置为 nildictionary 的键 responseData 的值是另一个包含键 results 的字典——您需要中间步骤。

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

关于ios - 使用 JSON 的 iOS 谷歌搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11694898/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com