1

我正在使用 ASIHTTP 从服务器下载一些文档。我有一个按钮,它首先控制本地版本(保存在 iPad 文件系统上)和服务器版本之间的差异,然后(在确认警报视图之后)开始下载。要下载文档,我使用以下代码:

for (SyncNode *node in _syncDocuments) {
        //SyncNode is a my Class that handle document
        // start the download
        NSString *filename = [NSString stringWithFormat:@"%@.%@",node.uniqueIdentifier,node.extension];
        NSString *tempPath = [SavedDocument pathToSyncFile:filename];
        // tempPath is a string like this
        // /var/mobile/Applications/5C05AA6F-55B3-46FD-8330-094BD0E61973/Documents/SyncDocumentsFolder/D49B421C-7528-4A3D-A8F6-942FF03881D0/f2e650e2-cff7-4485-9152-5445bee436f2.jpg

        //BaseHTTPRequest is an extension of ASIHTTPRequest
        BaseHTTPRequest *request = [[[BaseHTTPRequest alloc] initWithURL:[NSURL URLWithString:node.contentLocation] accountUUID:_uuid] autorelease];
        request.userInfo = [NSDictionary dictionaryWithObject:[NSNumber numberWithInt:i+1] forKey:@"requestNumber"];
        [request setDelegate:self];
        [request setShowAccurateProgress:YES];
        [request setDownloadProgressDelegate:self];
        [request setDownloadDestinationPath:tempPath];

        [request startAsynchronous];
}

设想。

  1. 我没有任何本地文件存储在 iPad 上
  2. 我按下按钮,程序计算下载的大小
  3. 我接受下载,并且例行程序会下载所有文档。当我尝试显示其中一个文档(在 Web 视图中)时,它工作正常,我可以看到该文档。
  4. 我删除了所有本地文档(删除过程完美,实际上文档存在于文件系统中)。

现在,我处于与 1 相同的情况。但是当我尝试再次(第二次)下载相同的文档时,所有 ASIHTTPRequest 都会- (void)requestFinished:(ASIHTTPRequest *)request在很短的时间间隔内返回并调用我的方法。示例:我有一个包含 8MB 文档的目录;第一次例程需要 11 或 12 秒才能完成所有下载。取而代之的是第二次同样的例程,同样的文件需要不到 1 秒的时间来完成所有的下载。

似乎下载没有运行,但 ASIHTTP 没有调用任何错误委托方法。

当我尝试显示下载的文档(第二次)时,我在控制台中看到此错误消息:

   Error copying file to temp path Error Domain=NSCocoaErrorDomain Code=260 "The operation
 couldn’t be completed. (Cocoa error 260.)" UserInfo=0x1229e900 
{NSFilePath=/var/mobile/Applications/5C05AA6F-55B3-46FD-8330-
094BD0E61973/Documents/SyncDocumentsFolder/D49B421C-7528-4A3D-A8F6-942FF03881D0/f2e650e2-cff7-
4485-9152-5445bee436f2.jpg, NSUnderlyingError=0x1229e570 "The operation couldn’t be completed. 
No such file or directory"}

这个问题把我逼疯了!有任何想法吗 ?

4

1 回答 1

0

尝试使用属性为您的请求设置缓存策略setCachePolicy

[request setCachePolicy:(ASIDoNotReadFromCacheCachePolicy | ASIDoNotWriteToCacheCachePolicy)];

有关更多信息,请阅读:http ://allseeing-i.com/ASIHTTPRequest/How-to-use#using_a_download_cache

于 2012-09-06T10:19:28.840 回答