Python Django Rest Framework UnorderedObjectListWarning

前端 未结 7 2285
时光取名叫无心
时光取名叫无心 2021-01-30 15:47

I upgraded from Django 1.10.4 to 1.11.1 and all of a sudden I\'m getting a ton of these messages when I run my tests:

lib/python3.5/site-packages/rest_framework/         


        
7条回答
  •  忘掉有多难
    2021-01-30 16:09

    I was getting this warning when i used objects.all() in my view.py

    profile_list = Profile.objects.all()
    paginator = Paginator(profile_list, 25)
    

    to fix this i changed my code to :

    profile_list = Profile.objects.get_queryset().order_by('id')
    paginator = Paginator(profile_list, 25)
    

提交回复
热议问题