在PHP + MySQL中,我通过以下方式对我的列表进行分页:
SELECT...FROM...LIMIT {($page - 1) * $perPage}, {$perPage}
但在Mongodb中,limit
聚合仅指定perPage
实施例
db.article.aggregate(
{ $limit : 5 }
);
如何在MySQL等MongoDB中编写查询?
答案 0 :(得分:0)
您可以使用skip,它可以用作偏移量。
db.article.aggregate(
{ $limit : 5 },
{ $skip : 50 }
);
https://docs.mongodb.org/manual/reference/method/cursor.skip/ https://docs.mongodb.org/manual/reference/operator/aggregation/limit/ https://docs.mongodb.org/manual/reference/operator/aggregation/skip/