drf

作者: BJ000 | 来源:发表于2020-02-20 14:14 被阅读0次

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

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