AFNetworking数据请求错误 Code=3840

错误提示:
Error Domain=NSCocoaErrorDomain Code=3840 “JSON text did not start with array or object and option to allow fragments not set.” UserInfo={NSDebugDescription=JSON text did not start with array or object and option to allow fragments not set.}

添加代码:
1、
manager.requestSerializer = [AFHTTPRequestSerializer serializer];
manager.responseSerializer = [AFJSONResponseSerializer serializer];// 请求返回的格式为json
manager.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@”application/json”, @”text/json”, @”text/javascript”,@”text/html”, nil];
添加上之后还是报错的话,那么这就是服务器端的问题 主要是服务器端返回的json格式不符合要求,让服务器解决
2、
在默认情况下,afnetworking网络请求都是以json的数据格式返回数据,因此,客户端也会以json为默认格式,如果返回的数据为非json标准格式,
manager.responseSerializer = [AFHTTPResponseSerializer serializer]
但是这样的话要自己转成UTF-8好像

你可能感兴趣的:(iOS)