mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-02-03 05:04:31 +03:00
Merge pull request #681 from dbrgn/format_suffixes_docs
Added function type detail to format suffix docs
This commit is contained in:
commit
19135061b6
|
@ -35,12 +35,22 @@ Example:
|
|||
|
||||
urlpatterns = format_suffix_patterns(urlpatterns, allowed=['json', 'html'])
|
||||
|
||||
When using `format_suffix_patterns`, you must make sure to add the `'format'` keyword argument to the corresponding views. For example.
|
||||
When using `format_suffix_patterns`, you must make sure to add the `'format'` keyword argument to the corresponding view. For example:
|
||||
|
||||
@api_view(('GET',))
|
||||
def api_root(request, format=None):
|
||||
# do stuff...
|
||||
|
||||
Or with class based views:
|
||||
|
||||
class CommentList(APIView):
|
||||
|
||||
def get(self, request, format=None):
|
||||
# do stuff...
|
||||
|
||||
def post(self, request, format=None):
|
||||
# do stuff...
|
||||
|
||||
The name of the kwarg used may be modified by using the `FORMAT_SUFFIX_KWARG` setting.
|
||||
|
||||
Also note that `format_suffix_patterns` does not support descending into `include` URL patterns.
|
||||
|
|
Loading…
Reference in New Issue
Block a user