码迷,mamicode.com
首页 > Web开发 > 详细

将模型对象转换为json字典:model_to_dict

时间:2021-04-08 13:26:42      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:code   例子   view   field   student   ram   pre   ons   work   

例子

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(排除返回的字段))

将模型对象转换为json字典:model_to_dict

标签:code   例子   view   field   student   ram   pre   ons   work   

原文地址:https://www.cnblogs.com/weiweivip666/p/14628258.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!