This commit is contained in:
Tom Christie 2013-02-26 19:51:09 +00:00
parent 19135061b6
commit e7ca326555

View File

@ -35,9 +35,9 @@ Example:
urlpatterns = format_suffix_patterns(urlpatterns, allowed=['json', 'html']) 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 view. For example: When using `format_suffix_patterns`, you must make sure to add the `'format'` keyword argument to the corresponding views. For example:
@api_view(('GET',)) @api_view(('GET', 'POST'))
def api_root(request, format=None): def api_root(request, format=None):
# do stuff... # do stuff...