本文介绍了有没有一种简单的方法可以从AFHTTPClient获取故障块中的http状态代码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我看到有一个可以接受的HTTP状态代码列表,可以修改,但是我认为如果可以在故障块中获取http状态代码,这样做会更干净。.

I see that there is a list of accepted http status codes that I can modify, but I think it would be cleaner if I can get the http status code in the failure block ..

好,找到操作对象的答案

Ok, found the answer with the operation object

failure:^(AFHTTPRequestOperation *operation, NSError *error){ 
        NSLog(@"error code %d",[operation.response statusCode]);
}];


推荐答案

好,找到操作对象的答案

Ok, found the answer with the operation object

failure:^(AFHTTPRequestOperation *operation, NSError *error){ 
       NSLog(@"error code %d",[operation.response statusCode]);
}];

这篇关于有没有一种简单的方法可以从AFHTTPClient获取故障块中的http状态代码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 23:16