标签:tty 方式 zed response htm post pes script php接口
使用AFNetworking库 post方式请求php接口时,报下面的错误
NSLocalizedDescription=Request failed: unacceptable content-type: text/html
网上找到了解决办法,在这里记录一下
修改AFNetworking/AFURLResponseSerialization.m文件
- (instancetype)init { self = [super init]; if (!self) { return nil; } self.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/json", @"text/javascript", nil]; return self; }
在acceptableContentTypes 中增加 @"text/html"
标签:tty 方式 zed response htm post pes script php接口
原文地址:http://www.cnblogs.com/winvine/p/6528541.html