AFNetworking/Overcoat/Promisekit - 在错误消息中获取返回 json
Posted
技术标签:
【中文标题】AFNetworking/Overcoat/Promisekit - 在错误消息中获取返回 json【英文标题】:AFNetworking/ Overcoat/Promisekit - getting the return json in the error message 【发布时间】:2015-04-24 18:10:22 【问题描述】:我正在使用 AFNetworking、Overcoat 和 Promisekit。我想查看从服务器返回的 json。
//apiclient.h
@interface STRAPIClient : OVCHTTPSessionManager
//apiclient.m
[self POST:@"contents" parameters:parameters]
.then(^(OVCResponse *response)
return response.result;
)
.catch(^(NSError * error)
NSLog(error.description);
);;
如何从 NSError 对象中获取响应字符串?
【问题讨论】:
你指的是什么回应?如果错误对应于网络错误,那么您将没有响应。 对不起,我澄清了。我指的是服务器返回的 json 字符串 【参考方案1】:检查error.userInfo[AFNetworkingOperationFailingURLResponseDataErrorKey]
和error.userInfo[AFNetworkingOperationFailingURLResponseErrorKey]
。
来自AFURLResponseSerialization.h
:
常量
AFNetworkingOperationFailingURLResponseErrorKey
对应的值是一个NSURLResponse
,其中包含与错误相关的操作的响应。此密钥仅存在于AFURLResponseSerializationErrorDomain
。
AFNetworkingOperationFailingURLResponseDataErrorKey
对应的值是一个NSData
,其中包含与错误相关的操作的原始数据。此密钥仅存在于AFURLResponseSerializationErrorDomain
。
【讨论】:
以上是关于AFNetworking/Overcoat/Promisekit - 在错误消息中获取返回 json的主要内容,如果未能解决你的问题,请参考以下文章