如何使用 TTURLRequest 查看服务器的响应数据?
有没有一种简单的方法可以从 TTURLRequest 转储响应数据?我收到服务器端错误,我希望能够在控制台中快速记录响应,而不必跟踪服务器日志。我将 Three20 的 TTURLRequest 与 TTURLJSONResponse 结合使用,到目前为止,我还无法轻松查看该数据,除非响应是 JSON 字符串。有什么建议吗?谢谢!
Is there an easy way to dump the response data from a TTURLRequest? I'm getting a server side error and I'd like to be able to quickly log the response in the console without having to tail the server logs. I'm using Three20's TTURLRequest in conjunction with TTURLJSONResponse, and so far I haven't been able to view that data easily unless the response is a JSON string. Any suggestions? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试打印 NSERROR
NSData *returnData = [NSURLConnection sendSynchronousRequest:urlRequest returnedResponse:&response error:&error];
Try to print the NSERROR
NSData *returnData = [NSURLConnection sendSynchronousRequest:urlRequest returningResponse:&response error:&error];