美文网首页
backend - django rest framework初

backend - django rest framework初

作者: 1f872d1e3817 | 来源:发表于2019-02-11 10:19 被阅读0次

    首先pip安装django以及djangorestframework

    创建一个新的django工程后,运行python manage.py migrate来初始化数据库

    创建管理员用户
    python manage.py createsuperuser --email admin@example.com --username admin

    创建rest-framework所需的序列化类Serializers

    from django.contrib.auth.models import User, Group
    from rest_framework import serializers
    
    
    class UserSerializer(serializers.HyperlinkedModelSerializer):
        class Meta:
            model = User
            fields = ('url', 'username', 'email', 'groups')
    
    
    class GroupSerializer(serializers.HyperlinkedModelSerializer):
        class Meta:
            model = Group
            fields = ('url', 'name')
    

    创建django的views

    from django.contrib.auth.models import User, Group
    from rest_framework import viewsets
    from tutorial.quickstart.serializers import UserSerializer, GroupSerializer
    
    
    class UserViewSet(viewsets.ModelViewSet):
        """
        API endpoint that allows users to be viewed or edited.
        """
        queryset = User.objects.all().order_by('-date_joined')
        serializer_class = UserSerializer
    
    
    class GroupViewSet(viewsets.ModelViewSet):
        """
        API endpoint that allows groups to be viewed or edited.
        """
        queryset = Group.objects.all()
        serializer_class = GroupSerializer
    

    定义urls路由

    from django.urls import include, path
    from rest_framework import routers
    from tutorial.quickstart import views
    
    router = routers.DefaultRouter()
    router.register(r'users', views.UserViewSet)
    router.register(r'groups', views.GroupViewSet)
    
    # Wire up our API using automatic URL routing.
    # Additionally, we include login URLs for the browsable API.
    urlpatterns = [
        path('', include(router.urls)),
        path('api-auth/', include('rest_framework.urls', namespace='rest_framework'))
    ]
    

    在django工程中引入rest-framework并设置分页

    INSTALLED_APPS = (
        ...
        'rest_framework',
    )
    REST_FRAMEWORK = {
        'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.PageNumberPagination',
        'PAGE_SIZE': 10
    }
    

    到这一步,就已经可以运行了,以上也正是django-rest-frameworkQuickstart中的内容

    相关文章

      网友评论

          本文标题:backend - django rest framework初

          本文链接:https://www.haomeiwen.com/subject/rfwfeqtx.html