关于AFNetworking code-1016

来源:互联网 发布:163邮箱数据库 编辑:程序博客网 时间:2024/05/29 15:43

AFURLResponseSerialization.m  文件里


 AFJSONResponseSerializer  实现方法


 - (instancetype)init  中


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


修改为

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


如果有中文修改为

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

1 0
原创粉丝点击