我想与pouchdb
进行分页。
查看代码以获取所有数据
function getAllData() {
if (!_data) {
return $q.when(_db.allDocs({ include_docs: true}))
.then(function(docs) {
_data = docs.rows.map(function(row) {
return row.doc;
});
});
} else {
return $q.when(_data);
}
};