djongo(mongodb)中具有跳过和限制的查询未返回正确的软件

时间:2018-09-18 11:17:44

标签: mongodb skip djongo

我正在使用最新版本的djongo和mongodb(https://github.com/nesdis/djongo) 我写了这样的查询:

Students.objects.using('student_db').all()[skip:limit]

“学生”表包含1000个对象。我想在forloop的每一轮中检索10个对象。 在第一轮中(使用skip = 0,limit = 10),一切正常,但是在下一轮中,此查询不返回任何对象(skip = 10,limit = 10,.. skip = 20,limit = 10,依此类推) )

我什至尝试了此查询,但结果仍然与以前相同: Students.objects.using('student_db').order_by('id')[skip:limit]

0 个答案:

没有答案