Error Domain=com.alamofire.error
2016-07-27 本文已影响0人
yhj0129
使用AFNetworking时遇到这情况
解决方法:
在AFNetworking的源文件AFURLResponseSerialization.m中修改代码就能解决:
修改文件223行处
self.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/json", @"text/javascript", nil];
为
self.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/json", @"text/javascript",@"text/html", nil];