美文网首页
AFN请求问题

AFN请求问题

作者: i个O人S发 | 来源:发表于2020-01-21 16:02 被阅读0次

    在使用AFNetworking 2.0 的时候本来一切很顺畅,但是中途遇到几个比较坑的地方

    在发送请求后,NSURLSessionDataTask一直报错

    Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html"

    解决方法:

    修改AFURLResponseSerialization.m文件的223行修改为以下:

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

    相关文章

      网友评论

          本文标题:AFN请求问题

          本文链接:https://www.haomeiwen.com/subject/wkuezctx.html