我正在使用最新版本的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]