将模型对象转换为json字典:model_to_dict
2021-04-09 02:27
标签:code 例子 view field student ram pre ons work 将模型对象转换为json字典:model_to_dict 标签:code 例子 view field student ram pre ons work 原文地址:https://www.cnblogs.com/weiweivip666/p/14628258.html例子
from rest_framework.views import APIView
class StudentAPIView(APIView):
def get(self, request):
pk = request.query_params.get(pk)
student_obj = Student.objects.get(pk)
return Response(model_to_dict(student_obj))
# model_to_dict中的参数
model_to_dict(模型对象, fields(指定返回的字段), exclude(排除返回的字段))
上一篇:css3 地球自转公转
文章标题:将模型对象转换为json字典:model_to_dict
文章链接:http://soscw.com/index.php/essay/73143.html