gpt4 book ai didi

ios - AFNetworking POST 写入服务器并返回失败错误(Cocoa 错误 3840)

转载 作者:行者123 更新时间:2023-11-29 12:37:21 25 4
gpt4 key购买 nike

我一直在努力将一些 jpg 图像上传到带有 AFNetworking 2.0 的服务器以及我在 stackoverflow 上遇到的一些代码,但我一直收到 Cocoa 错误 3840。我查了一下,发现一些信息关于txt 文件,但我没有上传 txt 文件,所以这让我很困惑。当我执行这段代码时,它开始向服务器写入一段时间,直到它因以下语句而崩溃:

Failure Error Domain=NSCocoaErrorDomain Code=3840 "The operation couldn’t be completed. (Cocoa error 3840.)" (JSON text did not start with array or object and option to allow fragments not set.) UserInfo=0x155b1360 {NSDebugDescription=JSON text did not start with array or object and option to allow fragments not set.}

我对 AFNetworking 还是个新手,有人能解释一下是什么导致了这个错误吗?

我在编写这段代码时遇到的另一个问题是我试图通过使用 dataWithContentsOfFile 方法保存 NSData,但它一直返回 nil 使用该方法后。我已经尝试了多种方法,这些方法在下面进行了编码。当我为 fileRoot 使用 pathForResource(_filename 包含扩展名)时,它返回 nil,但另一个方法 stringByAppendingPathComponent 按预期工作,但即使在将正确的路径作为 dataWithContentsOfFile 的参数后,它仍然为 imageToUpload 返回 nil >。现在我只是决定使用 UIImageJPEGRepresentation 让它工作。

有人能解释一下是什么原因造成的吗?

抱歉,如果我不应该在一个帖子中发布 2 个单独的问题。我的第一个问题是最紧迫的。谢谢。

NSDictionary *parameters = [NSDictionary dictionaryWithObjectsAndKeys:
_username, @"username",
_filename, @"filename",
_metadata, @"metadata",
nil];

// 1. Create `AFHTTPRequestSerializer` which will create your request.
AFHTTPRequestSerializer *serializer = [AFHTTPRequestSerializer serializer];

//NSString* fileRoot = [[NSBundle mainBundle] pathForResource:_filename ofType:nil];
//NSString *fileRoot=[[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:_filename];
//NSData *imageToUpload = [NSData dataWithContentsOfFile:fileRoot];
NSData *imageToUpload = UIImageJPEGRepresentation(_savedFiles[_selectedRowNumber], 1.0);

// 2. Create an `NSMutableURLRequest`.
NSMutableURLRequest *request =
[serializer multipartFormRequestWithMethod:@"POST" URLString:@"http://69.91.198.44:8080/GeodatabaseServer/FileUpload"
parameters:parameters
constructingBodyWithBlock:^(id<AFMultipartFormData> formData) {
[formData appendPartWithFileData:imageToUpload
name:_filenameNoExt
fileName:_filename
mimeType:@"image/jpeg"];
}error:nil];

// 3. Create and use `AFHTTPRequestOperationManager` to create an `AFHTTPRequestOperation` from the `NSMutableURLRequest` that we just created.
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
AFHTTPRequestOperation *operation =
[manager HTTPRequestOperationWithRequest:request
success:^(AFHTTPRequestOperation *operation, id responseObject) {
NSLog(@"Success %@", responseObject);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"Failure %@", error.description);
}];

// 4. Set the progress block of the operation.
[operation setUploadProgressBlock:^(NSUInteger __unused bytesWritten,
long long totalBytesWritten,
long long totalBytesExpectedToWrite) {
NSLog(@"Wrote %lld/%lld", totalBytesWritten, totalBytesExpectedToWrite);
}];

// 5. Begin!
[operation start];

最佳答案

我能够通过设置以下属性来修复上传失败:

manager.responseSerializer = [AFJSONResponseSerializer serializerWithReadingOptions:NSJSONReadingAllowFragments];

我还能够通过不使用 bundle 方法而是从我的文档目录中抓取来解决我的第二个问题,如下所示:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *path = [documentsDirectory stringByAppendingPathComponent:_filename];

关于ios - AFNetworking POST 写入服务器并返回失败错误(Cocoa 错误 3840),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25953701/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com