7.视频播放页面接口开发

0.播放页面

 

 1.视频播放页面接口开发

1.1 course/urls.py 添加路由

router.register(r'sections', views.SectionsViewSet)

1.2 course/serializers.py 写序列化器

from rest_framework import serializers
from course.models import *

class SectionsSerializer(serializers.ModelSerializer):
    class Meta:
        model = Sections
        fields = '__all__'

 

1.3 course/views.py 添加视图函数

from rest_framework import viewsets
from course.models import *
from course.serializers import *

class SectionsViewSet(viewsets.ModelViewSet):
    queryset = Sections.objects.all()
    serializer_class = SectionsSerializer

1.4 course/admin.py 注册后台管理

from django.contrib import admin
from . import models

admin.site.register(models.Sections)

1.5 测试接口

 

 

 

 

返回事例

 

posted @ 2020-11-10 18:41  高登汗  阅读(122)  评论(0编辑  收藏  举报