我知道我可以在将 AFHTTPClient 默认编码设置为 AFJSONParameterEncoding 然后在调用时发布 JSON 数据:
- (void)postPath:(NSString *)path
parameters:(NSDictionary *)parameters
success:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure
在参数处,我可以填写一个翻译成 JSON 的字典。
如果我连接到请求 JSON 对象的服务器,如下所示:
[“一个漂亮的图层”]
我在顶层不需要字典,而是数组对象。但是参数决定了字典类型,我该怎么办?