我是 AFNetWorkingk 的新手,我的问题是当我使用 AFJSONRequestOperation 时,我的服务返回了文本/html 结果!谁能给我一些建议?或者其他实现方法?
请您参考如下方法:
只需将 text/html
添加到 acceptableContentTypes 中,如下所示:
[AFJSONRequestOperation addAcceptableContentTypes:[NSSet setWithObject:@"text/html"]];
这绝对是比下面的更好的选择,因为您不需要更改 AFJSONRequestOperation.m