mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 17:47:04 +03:00
PAGE_SIZE addition in 3.1
This commit is contained in:
parent
180137300f
commit
c90cf828ae
|
@ -127,18 +127,9 @@ See the pagination documentation for further guidance on [setting the pagination
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
The name of a query parameter, which can be used by the client to override the default page size to use for pagination. If set to `None`, clients may not override the default page size.
|
#### PAGE_SIZE
|
||||||
|
|
||||||
For example, given the following settings:
|
The default page size to use for pagination. If set to `None`, pagination is disabled by default.
|
||||||
|
|
||||||
REST_FRAMEWORK = {
|
|
||||||
'PAGINATE_BY': 10,
|
|
||||||
'PAGINATE_BY_PARAM': 'page_size',
|
|
||||||
}
|
|
||||||
|
|
||||||
A client would be able to modify the pagination size by using the `page_size` query parameter. For example:
|
|
||||||
|
|
||||||
GET http://example.com/api/accounts?page_size=25
|
|
||||||
|
|
||||||
Default: `None`
|
Default: `None`
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user