您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
平常的开发过程中不免遇到需要把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}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持亿速云。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。