我正在尝试为ios 6应用程序解析JSON,但似乎无法让它工作。我已经搜索了大量的论坛,但没有找到一个有效的解决方案,我理解得足以实现,或者适用。
如果我错过了一个,我道歉。首先,我有一个测试WebService,据我所知,返回有效的JSON
http://thetrouthunter.com/SVLocationsAPI.php
其次,这是我的Objective-C代码:
+ (NSDictionary *)connectToService:(NSString *)query
{
NSError *error = nil;
query = [NSString stringWithFormat:@"%@&format=json&nojsoncallback=1", query];
query = [query stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSData *jsonData = [[NSString stringWithContentsOfURL:[NSURL URLWithString:query] encoding:NSUTF8StringEncoding error:nil] dataUsingEncoding:NSUTF8StringEncoding];
NSDictionary *results = jsonData ? [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers|NSJSONReadingMutableLeaves error:&error] : nil;
NSLog(@"locations: %@", results);
if (error)
NSLog(@"[%@ %@] JSON error: %@", NSStringFromClass([self class]), NSStringFromSelector(_cmd), error.localizedDescription);
return results;
}
+ (NSArray *)userLocation {
NSString *request = [NSString stringWithFormat:@"http://thetrouthunter.com/SVLocationsAPI.php"];
return [[self connectToService:request] valueForKeyPath:@"locations.location"];
}
ls NSLog函数正在打印错误:“操作无法完成。(可可错误:3840。)”
我无法弄清楚为什么会这样。我尝试过各种各样的事情。
答案 0 :(得分:4)
您要将%@&format=json&nojsoncallback=1
添加到connectToService:
中的网址,新网址会生成网页,而非您期望的JSON(即http://thetrouthunter.com/SVLocationsAPI.php&format=json&nojsoncallback=1)。
从HTTP请求中记录实际结果可能很有用,这样您就可以调试它直到获得JSON(即在调用序列化函数之前)。