9

问题

我希望能够在创建文档时通过命令行附加一个/多个附件(见下文)。我只能在 Futon (Couchbase) 中使用它,但只能在创建文档之后。

我尝试了以下方法:

curl -X PUT 'http://username:password@localhost:5984/client_info'

curl -X POST 'http://username:password@localhost:5984/client_info' -H 'Content-Type: application/json' -d '{"client_type": "Private", "client_name": "John Doe","client_email": "john@doe.com","client_city": "Toronto","created_at": "2011-09-06 12:45:03","expires_at": "2012-01-01 00:00:00", "_attachments": {
   "test01.jpg": {
       "content_type": "image/jpeg",
       "length": 30189          
    }
  }
}'

这只会导致以下错误:

{"error":"unknown_error","reason":"function_clause"}

谢谢

4

3 回答 3

16

您必须在单独的步骤中上传附件,在请求正文中包含实际的附件文件。因此,首先创建您的常规文档,然后在您上传文件的位置发出另一个请求。这是一个关于如何使用 curl (http://guide.couchdb.org/draft/api.html#attachments) 上传附件的示例:curl -v -X PUT http://127.0.0.1:5984/albums/6e1295ed6c29495e54cc05947f18c8af/artwork.jpg?rev=2-2739352689 --data-binary @artwork.jpg -H "Content-Type: image/jpg"

这是附件的官方 API:http ://wiki.apache.org/couchdb/HTTP_Document_API#Standalone_Attachments

于 2011-10-20T10:47:06.570 回答
6

这对我有用,而且看起来更简单。第一个必须是在创建文档时,如果您不添加 rev。我的示例使用数据库“test1”。

$ curl -H "Content-Type: image/jpeg" -X PUT --data-binary @test01.jpg 'http://username:password@localhost:5984/test1/client_info/test01.jpg'

{"ok":true,"id":"client_info","rev":"1-8584b6af9d0c3347ba08202697f09952"}

$ curl -H "Content-Type: image/jpeg" -X PUT --data-binary @test02.jpg 'http://username:password@localhost:5984/test1/client_info/test02.jpg?rev=1-8584b6af9d0c3347ba08202697f09952'

{"ok":true,"id":"client_info","rev":"2-623b94aba30944d6744f5c11cf03fc10"}
于 2012-12-12T21:25:59.897 回答
2

这是一种在与创建文档相同的请求中上传附件的方法。

curl -X POST 'http://user:pass@localhost:5984/client_stuff' -H 'Content-Type: application/json' -d '{"stuff": "stuff", "_attachments": {
   "empty.gif": {
       "content_type": "image/gif",
       "data": "'$(openssl base64 < file.gif)'"
    }
  }
}'

根据您的用例,Base64 编码可能不会那么糟糕。

更多信息:http ://wiki.apache.org/couchdb/HTTP_Document_API#Inline_Attachments

于 2012-09-07T16:27:17.847 回答