标签:__init__ content 安装 image res file img word framework
#sudo pip3 install django
#sudo pip3 install markdown
#sudo pip3 install djangorestframework
#django-admin.py startproject MyRestSite
#cd MyRestSite
#python manage.py makemigrations
#python manage.py migrate
#python manage.py createsuperuser
# Application definition
INSTALLED_APPS = (
‘django.contrib.admin‘,
‘django.contrib.auth‘,
‘django.contrib.contenttypes‘,
‘django.contrib.sessions‘,
‘django.contrib.messages‘,
‘django.contrib.staticfiles‘,
‘rest_framework‘,
)
REST_FRAMEWORK = {
‘DEFAULT_PERMISSION_CLASSES‘: [
‘rest_framework.permissions.DjangoModelPermissionsOrAnonReadOnly‘
]
}
models.py
class TableName(models.Model):
xxx = xxxx(xxx=xxx)
class Meta:
xxxxxxx
serializers.py
from rest_framework import serializers
class TableNameSerializer(serializers.ModelSerializer):
class Meta:
model = TableName
fields = (‘xxxx‘, ‘xxxxx‘, ‘xxxx‘, ‘xxxxx‘)
views.py
from rest_framework.renderers import JSONRenderer
from rest_framework import serializers
class JSONResponse(HttpResponse):
"""
用于返回JSON数据.
"""
def __init__(self, data, **kwargs):
content = JSONRenderer().render(data)
kwargs[‘content_type‘] = ‘application/json‘
content=‘{"xxxxx":‘+content+‘}‘
super(JSONResponse, self).__init__(content, **kwargs)
@csrf_exempt
def xxxxxxxxx(request,xxxxxxxxxx):
if request.method == ‘GET‘:
...
return JSONResponse(serializer.data)
urlpatterns = [
...
url(r‘^api/x/xxxxx/xxxxx$‘, xxxxxxxs),
]
#python3 ./manage.py runserver
# curl -H ‘Accept: application/json; indent=4‘ -u username:password http://127.0.0.1:8000/apiurls/
Django的RestfulAPI框架RestFramework
标签:__init__ content 安装 image res file img word framework
原文地址:https://www.cnblogs.com/KevinGeorge/p/9102435.html