1. 程式人生 > >python Bug8:Cannot reorder a query once a slice has been taken.

python Bug8:Cannot reorder a query once a slice has been taken.

Use django-sorting library according to this example: django-sorting example, but get errors said “Cannot reorder a query once a slice has been taken.” at line “{% autosort object_list %}”.

object_list = MyModel.objects.all()[:5].order_by("id")

應該是:

object_list = MyModel.objects.all().order_by("id")[:5]