CouchDB - 一步创建带附件的文档?

时间:2013-05-06 20:45:32

标签: database http rest couchdb

我刚刚开始使用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"

我一直在寻找一下,我只看到了首次创建文档并随后添加附件的示例。有没有办法可以在一个命令中执行此操作?非常感谢!

1 个答案:

答案 0 :(得分:6)

如果您传递内容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"