我用sails.js构建rest api。 我想在我的angularjs前端实现分页。 要做到这一点,我应该得到一个项目列表以及符合条件的项目总数(计算页数)。
不幸的是,sails.js只返回没有总记录数的数据列表。
我希望服务器响应如下所示:
{
data: [...], // collection data
count: 193 // records count, that meet the criteria of the request.
}
我该如何实现?
答案 0 :(得分:1)
您可以使用async.auto
async.auto(
count: functuon(callback){
Model.count(...).exec(callback);
},
data: function(callback){
Model.find(...).exec(callback);
}
},function(err,results){
console.log(results.count);
console.log(results.data);
});
答案 1 :(得分:0)
您可以使用Model.count
至count符合条件的所有数据
例如:
// very important here to use the same `criteria` for `find` and `count`
var criteria = {foo: 'bar'};
Model.find(criteria).exec(function (err, found) {
Model.count(criteria).exec(function (error, count) {
console.log({ data: found, count: count });
});
});
答案 2 :(得分:0)
我推荐了一组蓝图,这些蓝图将在标题或正文
中返回以太计数https://github.com/randallmeeker/SailsBluePrintActions/tree/master/pagination
这是一个例子
var query = Model.find()
.where( actionUtil.parseCriteria(req) )
.limit( actionUtil.parseLimit(req) )
.skip( actionUtil.parseSkip(req) )
.sort( actionUtil.parseSort(req) );
var metaInfo,
criteria = actionUtil.parseCriteria(req),
skip = actionUtil.parseSkip(req),
limit = actionUtil.parseLimit(req);
Model.count(criteria)
.exec(function(err, total){
if (err) return res.serverError(err);
metaInfo = {
start : skip,
end : skip + limit,
limit : limit,
total : total,
criteria: criteria
};
res.ok({info: metaInfo, items: matchingRecords});
});