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];

上一篇 下一篇

猜你喜欢

热点阅读