Python Django Rest Framework UnorderedObjectListWarning

前端 未结 7 2197
时光取名叫无心
时光取名叫无心 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条回答
  •  萌比男神i
    2021-01-30 16:02

    In my case, I had to add order_by('id') instead of ordering.

    class IntakeCaseViewSet(viewsets.ModelViewSet):
        schema = None
        queryset = IntakeCase.objects.all().order_by('id')
    

提交回复
热议问题