更新 Couchdb 文档
我有一个 Couchdb 文档 ID 和修订 ID,我想更新该文档。如何使用 CouchRest 实现此目的?
我尝试按照某处的建议将“_rev”包含在“put”中,但这不起作用。这是我到目前为止所尝试过的:
CouchRest.put('connection/db/docid',{"_rev": "id"},"Name": "XVZ"})
I have a Couchdb document id and revision id and I would like to update the document. How can I achieve this using CouchRest?
I have tried including "_rev" in "put" as suggested somewhere but that doesn't work. This is what I've tried so far:
CouchRest.put('connection/db/docid',{"_rev": "id"},"Name": "XVZ"})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您阅读此文档: http://guide.couchdb.org/draft/tour .html#first
它可能会让 couchdb 更清晰!
PS:您必须指定 id 和 rev 才能使其工作。
I advise you to read this doc : http://guide.couchdb.org/draft/tour.html#first
It might make couchdb clearer!
PS : You must specify id and rev to make it work.