Tutorial
https://www.django-rest-framework.org/tutorial/1-serialization/
翻译:
https://darkcooking.gitbooks.io/django-rest-framework-cn/content/chapter1.html
https://q1mi.github.io/Django-REST-framework-documentation/api-guide/serializers_zh/
https://darkcooking.gitbooks.io/django-rest-framework-cn/content/chapter1.html
开始
pip install django
pip install djangorestframework
pip install pygments # 这个用于语法高亮
cd ~
django-admin.py startproject tutorial
cd tutorial
python manage.py startapp snippets
tutorial/urls.py
from django.contrib import admin
from django.urls import path
from django.conf.urls import include, url
urlpatterns = [
path('admin/', admin.site.urls),
url(r'^', include('snippets.urls')),
]
owner = models.ForeignKey(‘auth.User’, related_name=‘snippets’,on_delete=models.CASCADE)