我一直在使用AFHTTPClient
类的postPath:parameters:success:failure:
方法。但它总是只调用失败块。我一直在使用AFNetworking
0.10 库。谁能告诉我这可能的原因。
以下是代码:
NSURL *nsUrl = [NSURL URLWithString:kURLAuthLogin];
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:nsUrl];
[httpClient postPath:nil parameters:loginParams success:^(AFHTTPRequestOperation *operation, id responseObject) {
NSLog(@"\n\n\n\n\n\n login success \n\n\n\n\n\n");
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"\n\n\n\n\n\n login failed \n\n\n\n\n\n");
}];
nsUrl 或任何其他变量肯定没有任何问题。