风抚弄着庄稼,时而把它吹弯,时而把它扬起,仿佛大地在进行有节奏的呼吸,那一档档成熟的小麦也都有了生命,风从那边来,传来麦穗与麦穗间的细语。
平常的开发过程中不免遇到需要把model转成字典的需求,尤其是现在流行前后端分离架构,Json格式几乎成了前后端之间数据交换的标准,这种model转dict的需求就更多了,本文介绍日常使用的方法以供参考
from django.forms.models import model_to_dict from projects.models import ProjectInformation site = ProjectInformation.objects.get(id=6) dict = model_to_dict(site) dict {'CRFmethod': '', 'EDCprovider': '', 'acceptancenum': '', 'add_time': datetime.datetime(2017, 4, 20, 8, 4, 42, 751202, tzinfo=<UTC>), 'begindate': None, 'clinicalassis': '', 'clinicalnum': '', 'created_by': '', 'created_date': None, 'enddate': None, 'ethicsreviewdate': None, 'ethicsreviewpers': '', 'ethicsreviewres': '', 'ethicsreviewunit': '', 'id': 6, 'isimport': None, 'leaderunit': None, 'localcases': None, 'medicalequipment': '', 'mequipmenttype': '', 'multicenter': '', 'plannum': '', 'proenname': '爱上地方', 'proname': '打士大夫', 'prostatus': '', 'prosummary': '', 'protype': '打是否', 'regstudy': '是', 'reportdate': None, 'reportnum': '', 'reportversion': '', 'researchdesign': '', 'researchtype': '', 'responsible': '', 'studytype': '器械类', 'telephonenum': None, 'totalcases': None, 'treatmenttype': None, 'unitnum': None}
本文django 将model转换为字典的方法示例到此结束。书是知识的宝库;书是提高的阶梯;书是人类的高级营养品。我们能够经过读书学习获得很多的知识,从而提高自我的才能,使自我变得聪明起来。小编再次感谢大家对我们的支持!