2

所以每当我的 ViewController 被加载时,我都会上传到服务器。不过好像有问题。当有大量异步请求时,它可能会使应用程序半崩溃。我的意思是请求不会通过,并且没有其他请求(在另一个线程上)继续。最重要的是,键盘非常滞后(我知道很奇怪)。无论如何,考虑到其他网络请求不会因此而被发送,这是一个严重的问题。我觉得奇怪的是上传请求的数量与下载请求的数量相同(上传甚至不做任何事情,它们只是发出一个正常的 http 请求),但下载请求在任何数量下都可以正常工作。这是我的代码:

- (void)serverUploadAll:(myEntity *)send
{  
    NSMutableString *urlString = [[NSMutableString alloc] initWithString:ServerApiURL];
    NSString *addTargetUrl = [NSString stringWithFormat:@"/addtarget?deviceToken=%@&appVersion=%@&targetId=%@", postToServer.deviceToken, postToServer.appVersion, send.Id];
    [urlString appendString:addTargetUrl];

    NSURL *url = [NSURL URLWithString:urlString];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];

    [NSURLConnection sendAsynchronousRequest:request queue:queueTwo completionHandler:^(NSURLResponse *response, NSData *data, NSError *error){
        //NSLog(@"response=%@", response);
        //NSLog(@"data=%@", data);
        //NSLog(@"error=%@", error);
    }];

}

上面的代码被称为循环数据库,当有大量调用时会出现问题,即120+。我的下载请求实际上是使用 AFNetworking 完成的,所以也许这就是它们高效工作的原因。无论如何,总而言之,为什么当多次调用上述代码时它会卡住并停止?

感谢您的帮助,非常感谢。
问候,
迈克

更新:因此,多亏了 runmad 的出色回答,我正在使用 AFNetworking 方法,但是,它会因这个错误而崩溃-[AFHTTPRequestOperation _propertyForKey:]: unrecognized selector sent to instance。我不明白为什么这不起作用,这是我的代码:

- (void)cycleThroughEntries
{
MyEntity *myEntity;
NSMutableArray *urlRequests;
urlRequests = [[NSMutableArray alloc] init];

for (id i in fetchedResultsController.fetchedObjects) {
    myEntity = i;
    NSMutableString *urlString = [[NSMutableString alloc] initWithString:ServerApiURL];
    NSString *addTargetUrl = [NSString stringWithFormat:@"/addtarget?deviceToken=%@&appVersion=%@&targetId=%@", postToServer.deviceToken, postToServer.appVersion, myEntity.Id];
    [urlString appendString:addTargetUrl];
    //NSLog(@"URL sent is: %@", urlString);
    NSURL *url = [NSURL URLWithString:urlString];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    AFHTTPRequestOperation *requestOperation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
    [urlRequests addObject:requestOperation];
}

AFHTTPClient *client = [[AFHTTPClient alloc] initWithBaseURL:[NSURL URLWithString:@""]];

[client enqueueBatchOfHTTPRequestOperationsWithRequests:urlRequests
                                        progressBlock:^(NSUInteger numberOfCompletedOperations, NSUInteger totalNumberOfOperations) {

                                            NSLog(@"%d / %d", numberOfCompletedOperations, totalNumberOfOperations);

                                        }
                                        completionBlock:^(NSArray *operations) {
                                            NSLog(@"All Done!");
                                        }];

}

不完全确定出了什么问题,因此将不胜感激。谢谢。

更新 2:已修复。我不应该制作一个数组AFHTTPRequestOperations,而只是正常的NSURLRequests。问题解决了!!

4

1 回答 1

4

您可以建立多少异步连接是有限制的——即使它们发生在后台线程上。同时进行 120 多个网络调用听起来有点疯狂,特别是如果它们包含比 GET 请求更长的上传时间。

我建议您考虑重写您需要请求/上传到服务器的内容以减少请求数量。您需要确保所有呼叫不会同时发生,并且您会推迟大多数呼叫,直到其他呼叫完成。

输入NSOperationQueue...

我会创建一个管理器类来处理您的所有请求。在这个类中,您创建一个NSOperationQueue可以继续向其添加请求的位置。这是一个很好的教程。您可以设置并发请求的数量,NSOperationQueue 将确保队列中的下一个请求等到当前正在运行的请求完成。它通过网络为您做了很多繁重的工作。

您也可以考虑查看AFNetworkingNSOperationQueues将所有网络呼叫排队,这样它们就不会同时发生。

在 AFNetworking 中,AFHTTPClient您可以使用以下方法,具体取决于您设置请求的方式:

- (void)enqueueBatchOfHTTPRequestOperationsWithRequests:(NSArray *)urlRequests
                                          progressBlock:(void (^)(NSUInteger numberOfFinishedOperations, NSUInteger totalNumberOfOperations))progressBlock
                                        completionBlock:(void (^)(NSArray *operations))completionBlock;

这应该让你开始:) 祝你好运。

更新

如果需要,您还可以将操作添加到 AFNetworking 操作队列。如果它当前尚未运行,您只需确保启动它。这样,您就可以在不同时间从应用程序的其他部分添加其他请求。您可以随时检查是否有任何操作正在运行/在队列中,令人敬畏的是,它允许您轻松取消任何正在运行的操作。可以在这里找到。

于 2013-01-29T13:55:35.543 回答