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.
什么时候在我的 morphia 代码中有这样的代码
query.offset((pageNo - 1) * pageSize);
它是否跳过查询的“仅”匹配行数或集合的第一(pageNo - 1)*pageSize行?谢谢。
Morphia 的offset和 Mongo 的一样skip;无论哪种情况,您都指定在返回结果行之前要跳过查询结果中的行数。因此,就您的问题而言,offset()是特定于查询的。
offset
skip
offset()