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

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

如:

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

没有 order_by()  就会报错

发布了73 篇原创文章 · 获赞 41 · 访问量 15万+

猜你喜欢

转载自blog.csdn.net/weixin_37989267/article/details/94558281