欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

django DRF 分页 UnorderedObjectListWarning: Pagination may yield inconsistent results with an unorder

程序员文章站 2022-07-12 10:33:34
...

报错原因 :分页一定要排序

如:

	def get_queryset(self):
		return Goods.objects.filter(classify=2, status=1).order_by('-id')

没有 order_by()  就会报错