2

我正在使用这样的 AFNetworking 工具使用 Web 服务:

NSURLRequest *request = [NSURLRequest requestWithURL:url];

AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
    [self GotJSONSuccess:JSON :response ];
} failure: nil ];

[operation start];

Web 服务响应并给我以下 json:

[
{
    "statusid": 1,
    "statusdesc": "ASSIGNED"
},
{
    "statusid": 2,
    "statusdesc": "COMPLETED"
},
{
    "statusid": 3,
    "statusdesc": "IN TRANSIT"
},
{
    "statusid": 4,
    "statusdesc": "DELAYED"
},
{
    "statusid": 5,
    "statusdesc": "ON HOLD"
}
]

我正在使用以下内容尝试解析 json:

- (void)GotJSONSuccess: (NSString*) JSON : (NSHTTPURLResponse*) response
{

NSString *newString = [NSString stringWithFormat:@"%@",JSON];

NSLog(@"response: %@", JSON);
NSData* data = [newString dataUsingEncoding:NSUTF8StringEncoding];
NSError* error;
id jsonObjects = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];

if (error){
    NSLog(@"error is %@", [error localizedDescription]);
    return;
}

NSArray *keys = [jsonObjects allKeys];

for (NSString *key in keys){
    NSLog(@"%@ is %@",key, [jsonObjects objectForKey:key]);
}
}

但是代码落入错误块中,输出为“无法完成操作。(Cocoa 错误 3840。)”

我在解析这个简单的 json 时做错了什么?

有没有比我正在采用的更好的解析方法?

如果可能的话,我想坚持使用原生 iOS 类和方法进行解析。

4

3 回答 3

4

您可以使用 NSJSONSerialization 类来创建这样的数组

NSArray *arr = [NSJSONSerialization JSONObjectWithData:responseData options:0 error:nil];

然后对于您的每个状态 ID,您只需将索引编入数组并拉出字典,如下所示:

NSDictionary *dict = [arr objectAtIndex:0];

最后一行会退出:`

{
    "statusid": 1,
    "statusdesc": "ASSIGNED"
}

然后您可以使用对象等方法作为字典上的键。`

于 2013-01-10T21:58:00.683 回答
0

如果你查看 FoundationErrors.h(或者只是搜索你的项目,包括链接的框架,3840,这就是我所做的)你会看到错误对应于 NSPropertyListReadCorruptError。谷歌搜索表明您的 JSON 可能无效。也许您在 JSON 之前或之后有额外的空格字符?您可以发布您从服务器获得的 URL 或完整响应吗?

什么是 kNilOptions?

于 2013-01-11T14:11:21.720 回答
0
NSArray *array = [NSJSONSerialization JSONObjectWithData:responseData options:0 error:nil];
NSArray *arrStatusid = [array valueForKey:@"statusid"];

尝试使用新版本(第 2 版)的AFNetworking

AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc]initWithRequest:req];
operation.responseSerializer = [AFJSONResponseSerializer serializer];
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id response){

    //data is in response

} failure:^(AFHTTPRequestOperation *operation, NSError *err){

    //some code on failure
}];
[operation start];
于 2015-01-09T12:30:14.680 回答