如何从CouchDB获得所有设计?

时间:2016-12-15 10:05:27

标签: angularjs typescript couchdb

我正在使用CouchDB和Angular技术编写应用程序。

为了调用我使用此功能的所有文件:

getCommsHistory() {
        let defer = this.$q.defer();
        this.localCommsHistoryDB.allDocs({include_docs: true, group: true}).then((doc) => {
            defer.resolve(doc.rows.map(row => row.doc));
        }, () => {
            defer.reject();
        });
        return defer.promise;
    }

我如何致电所有设计?

1 个答案:

答案 0 :(得分:2)

您可以使用startkeyendkey

就像那样:

GET /dbname/_all_docs?startkey="_design/"&endkey="_design0"&include_docs=true