标签:
今天在熟悉使用AFNetworking时发现一个问题,就是我用get请求数据时可以得到结果,而用post测试登陆时则会返回error,
错误信息为:failed: unacceptable content-type: text/html
这是因为HTTP响应头中的Content-Type字段对不上号
需要改的是:
AFURLResponseSerialization.m文件
222行:
self.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/json", @"text/javascript",@"text/html", nil];
添加上蓝色部分的内容,其实就是添加一种服务器返回的数据格式
failed: unacceptable content-type: text/html
标签:
原文地址:http://www.cnblogs.com/anyezhuixing/p/4543594.html