1、这种错误的原因是AFNetworking无法解析服务器返回的text/html内容格式
2、在AFNetwroking1.0版本中,可以直接在
[Objective-C] 纯文本查看 复制代码 self.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/json", @"text/javascript", nil]; 添加@"text/html",参考:http://www.yusian.com/bbs/thread-5964-1-1.html
3、AFNetworking2.0已经对各种方法做了优化,也不需要用AFJSONRequestOperation,2.0已经自带JSON解析。
你可以用AFHTTPRequestOperationManager解决一切问题,遇到你的这个问题,你可以像这么写:
[Objective-C] 纯文本查看 复制代码 AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
manager.responseSerializer.acceptableContentTypes = [NSSet setWithObject:@"text/html"]; //设置相应内容类型 2.0会对返回的JSON或者XML自动解析为字典的 |