使用 AFNetworking 我正在尝试上传大小为 33695 的图像(1280x990)。下面的代码与较小的图像(即:390x390)完美配合,但较大的图像会引发错误:
[client POST:@"/upload_image" parameters:nil constructingBodyWithBlock:^(id <AFMultipartFormData>formData) {
[formData appendPartWithFileData:imageData name:@"image" fileName:@"image.jpg" mimeType:@"image/jpeg"];
} success:^(NSURLSessionDataTask * task, id responderData) {
} failure:^(NSURLSessionDataTask * task, NSError * error) {
}];
抛出错误:
NSDebugDescription = "JSON text did not start with array or object and option to allow fragments not set.";
我搜索了许多其他帖子,似乎没有任何关于图像尺寸较大的问题。有什么建议么?