码迷,mamicode.com
首页 > Windows程序 > 详细

Django的RestfulAPI框架RestFramework

时间:2018-05-28 22:46:09      阅读:415      评论:0      收藏:0      [点我收藏+]

标签:__init__   content   安装   image   res   file   img   word   framework   

Django的Restful-API框架


安装框架

#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

配置文件settings.py

# 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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!