Afnetworking3.0请求数据 Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html"提示错误

//设置接受类型参数

   manager.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:

                                                        @"application/json",

                                                        @"text/html",

                                                        @"text/json",

                                                        @"text/plain",

                                                        @"text/javascript",

                                                        @"text/xml",

                                                        @"image/*",

                                                        nil];即可

你可能感兴趣的:(Afnetworking3.0请求数据 Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html"提示错误)