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
对象,但它不会构造特定属性,如文档和数据库等。RESTResource
initWithURL:
CouchAttachment