Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
8ee76373
Commit
8ee76373
authored
Sep 07, 2012
by
Marko Tibold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some missing imports.
Fix some typos. Fix some indentation errors.
parent
72bdd0fc
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
docs/tutorial/3-class-based-views.md
+8
-7
No files found.
docs/tutorial/3-class-based-views.md
View file @
8ee76373
...
@@ -7,11 +7,12 @@ We can also write our API views using class based views, rather than function ba
...
@@ -7,11 +7,12 @@ We can also write our API views using class based views, rather than function ba
We'll start by rewriting the root view as a class based view. All this involves is a little bit of refactoring.
We'll start by rewriting the root view as a class based view. All this involves is a little bit of refactoring.
from blog.models import Comment
from blog.models import Comment
from blog.serializers import ComentSerializer
from blog.serializers import Com
m
entSerializer
from django.http import Http404
from django.http import Http404
from djangorestframework.views import APIView
from djangorestframework.views import APIView
from djangorestframework.response import Response
from djangorestframework.response import Response
from djangorestframework.status import status
from djangorestframework import status
class CommentRoot(APIView):
class CommentRoot(APIView):
"""
"""
...
@@ -19,16 +20,16 @@ We'll start by rewriting the root view as a class based view. All this involves
...
@@ -19,16 +20,16 @@ We'll start by rewriting the root view as a class based view. All this involves
"""
"""
def get(self, request, format=None):
def get(self, request, format=None):
comments = Comment.objects.all()
comments = Comment.objects.all()
serializer = ComentSerializer(instance=comments)
serializer = Com
m
entSerializer(instance=comments)
return Response(serializer.data)
return Response(serializer.data)
def post(self, request, format=None)
def post(self, request, format=None)
:
serializer = ComentSerializer(request.DATA)
serializer = Com
m
entSerializer(request.DATA)
if serializer.is_valid():
if serializer.is_valid():
comment = serializer.object
comment = serializer.object
comment.save()
comment.save()
return Response(serializer.serialized, status=HTTP_201_CREATED)
return Response(serializer.serialized, status=
status.
HTTP_201_CREATED)
return Response(serializer.serialized_errors, status=HTTP_400_BAD_REQUEST)
return Response(serializer.serialized_errors, status=
status.
HTTP_400_BAD_REQUEST)
comment_root = CommentRoot.as_view()
comment_root = CommentRoot.as_view()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment