2

我有一个从视图下载的文档属性,所以我有来自文档的实际 JSON,包括 ID 和 Rev ID。不过,我没有实际的 CouchDocument。

该文件有一个附件,我知道它的名称。我正在尝试将附件下载到 CouchAttachment 对象中,但我无法找到一种方法,而无需重新下载文档,这很慢。这就是我正在做的事情:

-(CouchAttachment *)getAttachmentFor:(NSObject *)doc named:(NSString *)fileName {

  if ([[doc valueForKey:@"_attachments"] valueForKey:fileName]==nil)
    return nil;

  CouchDocument * document = [[[App shared] database] documentWithID:[doc valueForKey:@"_id"]];
  CouchRevision * revision = [document revisionWithID:[doc valueForKey:@"_rev"]];
  return [revision attachmentNamed:fileName];
}

有什么方法可以直接获取附件,而不必先获取文档和修订版?

4

1 回答 1

1

CouchCocoa 框架似乎没有提供CouchAttachment直接创建对象的方法。但是,您可以通过 GET 操作直接获取附件,前提是您知道附件的 URL。

假设您在某个数据库中有一些文档,其附件名为 someAttachment.txt。该附件的 URL 格式为:

http://couchdb/someDatabase/someDocumentID/someAttachment.txt?rev=<your revision id>

您有您的doc字典中的修订 ID 和文档 ID。如果您可以传递服务器 URL 和/或数据库 URL,则可以执行 GET 操作来获取附件。

RESTResource *aRestResource=[[RESTResource alloc] initWithURL:[NSURL URLWithString:@"http://couchdb/someDatabase/someDocumentID/someAttachment.txt?rev=<your revision id>"]];
    [aRestResource autorelease];
    RESTOperation *aRestOperation=[aRestResource GET];
    [aRestOperation onCompletion:^{
        NSLog(@"Content Type:%@",aRestOperation.responseBody.contentType);
        //The response for the GET will contain the attachment's data. You can
        NSData *contentData=[[NSData alloc] initWithData:aRestOperation.responseBody.content];
        NSString *contentString=[[NSString alloc] initWithData:contentData encoding:NSUTF8StringEncoding];
        NSLog(@"Content:%@",contentString);   //Should contain the text in someAttachment.txt
        [contentData release];
        [contentString release];
    }];
    [aRestOperation wait];

来源:http ://wiki.apache.org/couchdb/HTTP_Document_API#Attachments

或者,您可以使用's方法创建一个CouchAttachment对象,但它不会构造特定属性,如文档和数据库等。RESTResourceinitWithURL:CouchAttachment

于 2012-05-08T06:26:23.117 回答