drf

class StudentViewSet(viewsets.ModelViewSet):

'''

-查看,编辑用户数据的api接口

'''

queryset= Student.objects.all()  # 要序列化的数据

serializer_class= StudentSerializer  # 要是哪个序列化类

这段代码实现了列表创建,更新,获取详情,删除这些操作

-详情页实在serializer.py里面实现
'''python

class StudentSerializer(HyperlinkedModelSerializer):

class Meta:

    model = Student  #序列化哪个模型

fields = ('id','name','age','group')
'''

你可能感兴趣的:(drf)