zoukankan      html  css  js  c++  java
  • django 将model转换为字典

    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}
  • 相关阅读:
    Mootools中的Class应用
    预初始化对象(OnPreInit)
    新博客开张
    ASP.NET获取客户端相关信息
    UpdatePannel中JS不执行问题
    KU990 JVAVA修改全屏
    textbox 增加click事件
    JS引用顺序的问题
    传统三层架构
    ORCALE 相关操作
  • 原文地址:https://www.cnblogs.com/zhaoyingjie/p/6742879.html
Copyright © 2011-2022 走看看