在AFNetworking 1.3项目中,我有以下代码:
- (voID) downloadJson:(ID)sender{ NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://myServer/API/call?param1=string1¶m2=string2"]]; AFJsONRequestoperation *operation = [AFJsONRequestoperation JsONRequestoperationWithRequest:request success:^(NSURLRequest *request,NShttpURLResponse *response,ID JsON) { // handle success } failure:^(NSURLRequest *request,NSError *error,ID JsON) { NSLog(@"%ld",(long)[response statusCode]); NSDictionary *data = JsON; Nsstring *errorMsg = [data objectForKey:@"descriptiveErrorMessage"]; // handle failure }]; [operation start];}
当客户端发送格式不正确或参数错误的网址时,服务器会发回400错误并包含JsON,其中包含我在故障块中读取的“descriptiveErrorMessage”.我使用这个“descriptiveErrorMessage”来确定url的错误,并在适当的时候向用户发送消息.
AFNetworking 2.0项目的代码如下所示:
- (voID)downloadJson:(ID)sender{ NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://myServer/API/call?param1=string1¶m2=string2"]]; AFhttpRequestoperation *operation = [[AFhttpRequestoperation alloc] initWithRequest:request]; operation.responseSerializer = [AFJsONResponseSerializer serializer]; [operation setCompletionBlockWithSuccess:^(AFhttpRequestoperation *operation,ID responSEObject) { // handle success } failure:^(AFhttpRequestoperation *operation,NSError *error) { // any way to get the JsON on a 400 error? }]; [operation start];}
在AFNetworking 2.0项目中,我没有看到任何方法让JsON读取服务器发送的“descriptiveErrorMessage”.我可以在 *** 作中从NShttpURLResponse获取响应头,但就我而言,也许我错过了一些东西.
有没有办法在失败块中获取JsON?如果没有,任何人都可以提出更好的方法吗?
在此先感谢您对此问题的任何帮助.
解决方法 我想你可以尝试访问传递的 *** 作参数的responseData属性到你的失败块.不确定它是否包含服务器发回的JsON数据,但所有信息都应该存在.
希望能帮助到你.
总结以上是内存溢出为你收集整理的ios – 问题从AFNetworking 1.3迁移到AFNetworking 2.0全部内容,希望文章能够帮你解决ios – 问题从AFNetworking 1.3迁移到AFNetworking 2.0所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)