错误如下:
Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html" NSLocalizedDescription=Request failed: unacceptable content-type: text/html
这是由于AFNetworking解析格式不全的原因导致的,在AF的源文件AFURLResponseSerialization.m中修改代码就能解决:
找到
self.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/json", @"text/javascript", nil nil];
往集合中加入要解析的格式即可。但这样做也不是办法,第三方是自己加进去的话还可以,要是通过CocoaPods添加的这样就行不通了,后来我尝试通过外部修改,发现是有这个接口的,于是在sessionManager初始化时加入:
_sessionManager.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/json", @"text/javascript",@"text/html", nil];
便可成功解决。
网友评论