NSLocalizedDescription=Request failed: unacceptable content-type: text/html

项目使用的是AFNetworing框架,其中一个接口被后台修改过后直接走失败的block.这种情况可以试一下去AFJSONResponseSerializer中在224行检查下面这行代码

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

如果没@"text/html",加上就行

你可能感兴趣的:(NSLocalizedDescription=Request failed: unacceptable content-type: text/html)