获取couchdb数据库中所有文档的文档id
我有一个简单的问题,我应该如何从 couchdb 中的给定数据库中检索所有文档的文档 ID。
我编写了这段代码来检索所有文档 -
docs=CouchRest.get("http://localhost:5984/competency1/_all_docs?include_docs=true")
puts docs.to_json
上面的代码显示了数据库的全部详细信息。我希望能够仅列出文档 ID。
我真的很感谢你的帮助。
谢谢。
I have a simple question, How should I retrieve the document ids of all documents from a given database in couchdb.
I have written this code which retrieves all the documents-
docs=CouchRest.get("http://localhost:5984/competency1/_all_docs?include_docs=true")
puts docs.to_json
The above code displays the entire details of the database.I want to be able to list only the document id's.
I really appreciate your help.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 HTTP Document API 关于检索所有文档的信息:
换句话说,获取 不带
?include_docs=true
部分的/competency1/_all_docs
。出于多种原因,这是最好的解决方案。limit
、startkey、
endkey` 选项。From HTTP Document API about retrieving all documents:
In other words, get
/competency1/_all_docs
without the?include_docs=true
part. This is the best solution for several reasons.limit
,startkey,
endkey` options.