How to limit query results with Django Rest filters

前端 未结 3 1959
南笙
南笙 2021-02-19 23:54

I am working on an api built with Django Rest Framework. I have defined several model classes and I have also created some filters to apply on certain

3条回答
  •  一生所求
    2021-02-20 00:07

    You can use Django Rest Framework pagination. The pagination_class LimitOffsetPagination give you the ability to limit the number of returned entries in a query_param.

    http://www.django-rest-framework.org/api-guide/pagination/

提交回复
热议问题