4

我刚刚开始使用 CouchDB,我已经能够使用两步过程创建带有附件的文档:

$ curl -X PUT http://localhost:5984/test/small -H "Content-Type: application/json" -d {}
$ curl -X PUT http://localhost:5984/test/small/attachment?rev=1-967a00dff5e02add41819138abb3284d --data-binary @small.mp4 -H "Content-Type: video/mp4"

我一直在四处寻找,我只看到了首先创建文档并随后添加附件的示例。有没有办法可以在一个命令中做到这一点?非常感谢!

4

1 回答 1

7

如果您通过 base64 编码的内容,您可以同时创建/更新文档和设置附件:

curl -X PUT http://localhost:5984/test/docid -d '{"_attachments": {"message.txt": {"data": "aGVsbG8sIENvdWNoIQ==", "content_type": "text/plain"}}}' -H "Content-Type:application/json"

如果文档已经包含一些附件,请不要忘记保留它们的存根,否则它们将被删除:

curl -X PUT http://localhost:5984/test/docid -d '{"_rev": "1-c5715e943df193437ca89e66982562a5", "_attachments": {"another_message.txt": {"data": "UmVsYXgh", "content_type": "text/plain"}, "message.txt":{"content_type":"text/plain","revpos":1,"digest":"md5-G8EmVzBQlBaB8+bLeMMzeg==","length":13,"stub":true}}}' -H "Content-Type:application/json"
于 2013-05-07T08:03:03.470 回答