mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-07-27 08:29:59 +03:00
Merge a1fca49c2c
into 4bb504732d
This commit is contained in:
commit
e1b35a8309
|
@ -96,9 +96,12 @@ You can also set the pagination style on a per-view basis, using the `ListAPIVie
|
||||||
model = ExampleModel
|
model = ExampleModel
|
||||||
paginate_by = 10
|
paginate_by = 10
|
||||||
paginate_by_param = 'page_size'
|
paginate_by_param = 'page_size'
|
||||||
|
Note: to override the default pagination settings on a per-view basis, using 'paginate_by = 0' will turn off the pagination for this view
|
||||||
|
|
||||||
For more complex requirements such as serialization that differs depending on the requested media type you can override the `.get_paginate_by()` and `.get_pagination_serializer_class()` methods.
|
For more complex requirements such as serialization that differs depending on the requested media type you can override the `.get_paginate_by()` and `.get_pagination_serializer_class()` methods.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
# Custom pagination serializers
|
# Custom pagination serializers
|
||||||
|
|
Loading…
Reference in New Issue
Block a user