AFNetworking客户端子类不解析响应

时间:2013-03-11 21:35:49

标签: ios afnetworking

我试图通过继承AFHTTPClient并设置基本路径来实现AFNetworking客户端

#define WineAPIBaseURLString @"http://localhost:3000/"
@implementation WineAPIClient

+(id)sharedInstance{
  static WineAPIClient *__sharedInstance;
  static dispatch_once_t onceToken;
  dispatch_once(&onceToken, ^{
    __sharedInstance = [[WineAPIClient alloc]initWithBaseURL:[NSURL URLWithString:WineAPIBaseURLString]];
});
return __sharedInstance;
}

- (id)initWithBaseURL:(NSURL *)url
{
 self = [super initWithBaseURL:url];
if(self){
    [self setParameterEncoding:AFJSONParameterEncoding];
    [self registerHTTPOperationClass:[AFJSONRequestOperation class]];
}

return self;
}

@end

现在在我的视图控制器中调用客户端给了我奇怪的结果。例如,以下代码:

[[WineAPIClient sharedInstance] getPath:@"wines"
                               parameters:nil
                               success:^(AFHTTPRequestOperation *operation, id responseObject) {
                                        NSLog(@"%@", responseObject);

                               }
                               failure:^(AFHTTPRequestOperation *operation, NSError *error) {
                                        NSLog(@"Error fetching wines!");
                                        NSLog(@"%@",error);
                               }];

它正在登录控制台一堆数字:

2013-03-11 16:25:36.411 AFNetworking4[1934:1260b] GET 'http://localhost:3000/wines'
2013-03-11 16:25:36.430 AFNetworking4[1934:f803] <5b0a2020 7b0a2020 2020225f 5f76223a    20302c0a 20202020 225f6964 223a2022 35313131 35656235 37356265 35383766 3034303...
2013-03-11 16:25:36.429 AFNetworking4[1934:13003] 200 'http://localhost:3000/wines' [0.0173 s]

如何更正客户端以正确解析JSON?客户端实现是否有任何错误?。

需要注意的一点是,在不使用自定义客户端时,完全相同的URI正常工作。

即:

NSURL *url = [NSURL URLWithString:@"http://localhost:3000/wines"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];

AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
    NSLog(@"%@",JSON);
} failure:nil];
[operation start];

我正在使用AFNetworking的0.10.1分支(我必须支持4.x设备,所以我无法升级......)。

任何想法如何纠正?

非常感谢。

2 个答案:

答案 0 :(得分:1)

AFJSONParamterEncoding仅影响您通过请求传递的参数。看起来您正在接收编码为NSData的数据。您可以尝试使用initWithData创建NSString,然后记录它。您还可能希望确保您的客户端返回实际的JSON。在ruby中,这可能需要to_json方法。

答案 1 :(得分:1)

谢谢,这是对的......我收到了NSData而不是解析JSON。完全错过了有关此部分的文档信息

这些内容类型仅在1)时作为请求的响应对象返回    HTTP客户端已注册适当的AFHTTPRequestOperation子类 -    registerHTTPOperationClass:,和2)请求Accept HTTP头是适合的    要求的内容类型。不这样做可能会导致获得NSData实例    成功或失败回调块的方法,如getPath:参数:成功:失败。    因此,要使用JSON数据,请执行[client registerHTTPOperationClass:    [AFJSONRequestOperation class]]和[client setDefaultHeader:@“Accept”    value:@“application / json”]初始化HTTP客户端时。

因此,修复只是将接受应用程序/ json 默认标头添加到客户端。