美文网首页
iOS--Error Domain=com.alamofire.

iOS--Error Domain=com.alamofire.

作者: 乐逍遥的笔记 | 来源:发表于2018-09-05 15:04 被阅读59次

    在使用AFNetWorking中,有时候会出现Error Domain=com.alamofire.error.serialization.response Code=-1016的错误。
    最简单的解决办法就是在你自定义的网络请求单例中添加如下代码:

    //设置与服务器和前端所有可相互识别的方式
            ownerManager.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/json", @"text/javascript", @"text/html", @"text/plain", @"text/xml",nil];
    

    相关文章

      网友评论

          本文标题:iOS--Error Domain=com.alamofire.

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