django-rest-framework/docs/api-guide/generic-views.md

187 lines
6.6 KiB
Markdown
Raw Normal View History

2012-09-12 13:12:13 +04:00
<a class="github" href="mixins.py"></a>
<a class="github" href="generics.py"></a>
# Generic views
> Djangos generic views... were developed as a shortcut for common usage patterns... They take certain common idioms and patterns found in view development and abstract them so that you can quickly write common views of data without having to repeat yourself.
>
> &mdash; [Django Documentation][cite]
2012-10-02 14:48:25 +04:00
One of the key benefits of class based views is the way they allow you to compose bits of reusable behaviour. REST framework takes advantage of this by providing a number of pre-built views that provide for commonly used patterns.
2012-10-03 00:26:15 +04:00
The generic views provided by REST framework allow you to quickly build API views that map closely to your database models.
2012-10-02 14:48:25 +04:00
2012-10-03 00:26:15 +04:00
If the generic views don't suit the needs of your API, you can drop down to using the regular `APIView` class, or reuse the mixins and base classes used by the generic views to compose your own set of reusable generic views.
## Examples
Typically when using the generic views, you'll override the view, and set several class attributes.
class UserList(generics.ListCreateAPIView):
model = User
serializer_class = UserSerializer
permission_classes = (IsAdminUser,)
2012-10-03 00:26:15 +04:00
paginate_by = 100
For more complex cases you might also want to override various methods on the view class. For example.
class UserList(generics.ListCreateAPIView):
model = User
serializer_class = UserSerializer
permission_classes = (IsAdminUser,)
2012-10-03 00:26:15 +04:00
2012-10-26 15:46:31 +04:00
def get_paginate_by(self, queryset):
2012-10-03 00:26:15 +04:00
"""
Use smaller pagination for HTML representations.
"""
page_size_param = self.request.QUERY_PARAMS.get('page_size')
if page_size_param:
return int(page_size_param)
2012-10-03 00:26:15 +04:00
return 100
For very simple cases you might want to pass through any class attributes using the `.as_view()` method. For example, your URLconf might include something the following entry.
url(r'^/users/', ListCreateAPIView.as_view(model=User) name='user-list')
2012-10-02 14:48:25 +04:00
---
# API Reference
The following classes are the concrete generic views. If you're using generic views this is normally the level you'll be working at unless you need heavily customized behavior.
2012-10-25 16:50:48 +04:00
## CreateAPIView
2012-10-02 14:48:25 +04:00
2012-10-25 16:50:48 +04:00
Used for **create-only** endpoints.
2012-10-02 14:48:25 +04:00
2012-10-25 16:50:48 +04:00
Provides `post` method handlers.
2012-10-02 14:48:25 +04:00
2012-10-25 16:50:48 +04:00
Extends: [GenericAPIView], [CreateModelMixin]
2012-10-25 16:50:48 +04:00
## ListAPIView
2012-10-02 14:48:25 +04:00
2012-10-25 16:50:48 +04:00
Used for **read-only** endpoints to represent a **collection of model instances**.
2012-10-02 14:48:25 +04:00
2012-10-25 16:50:48 +04:00
Provides a `get` method handler.
2012-10-02 14:48:25 +04:00
2012-10-25 16:50:48 +04:00
Extends: [MultipleObjectAPIView], [ListModelMixin]
2012-10-02 14:48:25 +04:00
## RetrieveAPIView
Used for **read-only** endpoints to represent a **single model instance**.
2012-10-02 14:48:25 +04:00
Provides a `get` method handler.
2012-10-25 16:50:48 +04:00
Extends: [SingleObjectAPIView], [RetrieveModelMixin]
## DestroyAPIView
Used for **delete-only** endpoints for a **single model instance**.
Provides a `delete` method handler.
Extends: [SingleObjectAPIView], [DestroyModelMixin]
## UpdateAPIView
Used for **update-only** endpoints for a **single model instance**.
Provides a `put` method handler.
Extends: [SingleObjectAPIView], [UpdateModelMixin]
## ListCreateAPIView
Used for **read-write** endpoints to represent a **collection of model instances**.
Provides `get` and `post` method handlers.
Extends: [MultipleObjectAPIView], [ListModelMixin], [CreateModelMixin]
## RetrieveDestroyAPIView
Used for **read or delete** endpoints to represent a **single model instance**.
Provides `get` and `delete` method handlers.
2012-10-25 16:50:48 +04:00
Extends: [SingleObjectAPIView], [RetrieveModelMixin], [DestroyModelMixin]
2012-10-02 14:48:25 +04:00
## RetrieveUpdateDestroyAPIView
2012-10-25 16:50:48 +04:00
Used for **read-write-delete** endpoints to represent a **single model instance**.
2012-10-02 14:48:25 +04:00
Provides `get`, `put` and `delete` method handlers.
2012-10-25 16:50:48 +04:00
Extends: [SingleObjectAPIView], [RetrieveModelMixin], [UpdateModelMixin], [DestroyModelMixin]
2012-10-02 14:48:25 +04:00
---
# Base views
2012-10-03 00:26:15 +04:00
Each of the generic views provided is built by combining one of the base views below, with one or more mixin classes.
## GenericAPIView
2012-10-02 14:48:25 +04:00
Extends REST framework's `APIView` class, adding support for serialization of model instances and model querysets.
## MultipleObjectAPIView
2012-10-02 14:48:25 +04:00
Provides a base view for acting on a single object, by combining REST framework's `APIView`, and Django's [MultipleObjectMixin].
**See also:** ccbv.co.uk documentation for [MultipleObjectMixin][multiple-object-mixin-classy].
## SingleObjectAPIView
2012-10-02 14:48:25 +04:00
Provides a base view for acting on a single object, by combining REST framework's `APIView`, and Django's [SingleObjectMixin].
**See also:** ccbv.co.uk documentation for [SingleObjectMixin][single-object-mixin-classy].
---
# Mixins
2012-10-03 00:26:15 +04:00
The mixin classes provide the actions that are used to provide the basic view behaviour. Note that the mixin classes provide action methods rather than defining the handler methods such as `.get()` and `.post()` directly. This allows for more flexible composition of behaviour.
2012-10-02 14:48:25 +04:00
## ListModelMixin
Provides a `.list(request, *args, **kwargs)` method, that implements listing a queryset.
2012-10-25 16:50:48 +04:00
Should be mixed in with [MultipleObjectAPIView].
2012-10-02 14:48:25 +04:00
## CreateModelMixin
Provides a `.create(request, *args, **kwargs)` method, that implements creating and saving a new model instance.
Should be mixed in with any [GenericAPIView].
2012-10-02 14:48:25 +04:00
## RetrieveModelMixin
Provides a `.retrieve(request, *args, **kwargs)` method, that implements returning an existing model instance in a response.
2012-10-25 16:50:48 +04:00
Should be mixed in with [SingleObjectAPIView].
2012-10-02 14:48:25 +04:00
## UpdateModelMixin
Provides a `.update(request, *args, **kwargs)` method, that implements updating and saving an existing model instance.
2012-10-25 16:50:48 +04:00
Should be mixed in with [SingleObjectAPIView].
2012-10-02 14:48:25 +04:00
## DestroyModelMixin
Provides a `.destroy(request, *args, **kwargs)` method, that implements deletion of an existing model instance.
2012-10-25 16:50:48 +04:00
Should be mixed in with [SingleObjectAPIView].
2012-09-12 13:12:13 +04:00
[cite]: https://docs.djangoproject.com/en/dev/ref/class-based-views/#base-vs-generic-views
2012-10-02 14:48:25 +04:00
[MultipleObjectMixin]: https://docs.djangoproject.com/en/dev/ref/class-based-views/mixins-multiple-object/
[SingleObjectMixin]: https://docs.djangoproject.com/en/dev/ref/class-based-views/mixins-single-object/
[multiple-object-mixin-classy]: http://ccbv.co.uk/projects/Django/1.4/django.views.generic.list/MultipleObjectMixin/
[single-object-mixin-classy]: http://ccbv.co.uk/projects/Django/1.4/django.views.generic.detail/SingleObjectMixin/
2012-10-25 16:50:48 +04:00
[GenericAPIView]: #genericapiview
[SingleObjectAPIView]: #singleobjectapiview
[MultipleObjectAPIView]: #multipleobjectapiview
[ListModelMixin]: #listmodelmixin
[CreateModelMixin]: #createmodelmixin
[RetrieveModelMixin]: #retrievemodelmixin
[UpdateModelMixin]: #updatemodelmixin
[DestroyModelMixin]: #destroymodelmixin