码迷,mamicode.com
首页 > 移动开发 > 详细

iOS AFNetworking “Request failed: unacceptable content-type: text/html”问题

时间:2015-06-02 00:21:39      阅读:540      评论:0      收藏:0      [点我收藏+]

标签:

使用AFNetworking出现报错:

error=Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html" UserInfo=0x7fdfd8729680 {com.alamofire.serialization.response.error.response= { URL: http://172.16.1.31:7001/itom/getwork } { status code: 200, headers {

    "Cache-Control" = "no-cache";

    "Content-Type" = "text/html;charset=UTF-8";

    Date = "Mon, 24 Nov 2014 03:13:16 GMT";

    "Transfer-Encoding" = Identity;

    "X-Powered-By" = "Servlet/2.5 JSP/2.1";
å

 

 

 

解决方法:

全工程搜索AFURLResponseSerialization.m文件

修改223行:

self.acceptableContentTypes = [NSSetsetWithObjects:@"application/json", @"text/html",@"text/json",@"text/javascript", nil];

加上蓝色部分,其实就是添加一种服务器返回的数据格式。

亲测,好使。

iOS AFNetworking “Request failed: unacceptable content-type: text/html”问题

标签:

原文地址:http://www.cnblogs.com/6duxz/p/4545277.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!