更新 Couchdb 文档

发布于 2024-12-07 04:24:05 字数 213 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雨后咖啡店 2024-12-14 04:24:05

我建议您阅读此文档: 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文