Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在一个 CouchDB 中列出所有 CouchApp?
我想做类似的事情:
couchapp list http://domain.tld:5984/content
并取回所有 couchapp 名称的列表。
诀窍是使用 _all_docs,然后使用 startkey 和 endkey 从该列表中选择您感兴趣的那些。
由于所有设计文档 _id 都以 _design/ 开头,我们可以选择 _design/ 和后面的字符 0 之间的所有文档,给出 _design0。
http://www.couch.db:5984/database/_all_docs?startkey="_design/"&endkey="_design0"
祝你好运!