博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
django中将model转换为dict的方法
阅读量:5964 次
发布时间:2019-06-19

本文共 782 字,大约阅读时间需要 2 分钟。

 

django中将model转换为dict的方法

 

from django.forms.models import model_to_dictfrom user.model import userprofilemodel_to_dict(userprofile.model.get(id=100))d3 = {
'username': 'zz_yy', 'password': 'zyjzyj'}a = UserProfile()a.username = 'zz__e'a.password = '33ff'd3 = model_to_dict(a)print(d3)#{'id': None, 'password': '33ff', 'last_login': None, 'is_superuser': #False, 'username': 'zz__e', 'first_name': '', 'last_name': '', #'email': '', 'is_staff': False, 'is_active': True, 'date_joined': #datetime.datetime(2018, 10, 19, 20, 27, 0, 22740), #'account_person': None, 'if_show_gift_account': False, #'advertisement_type': None, 'account_type': 'advertiser', #'nick_name': None, 'gender': 'male', 'address': None, 'mobile': #None, 'groups':
, 'user_permissions':
}

 

转载地址:http://wktax.baihongyu.com/

你可能感兴趣的文章
JSTL的相关使用
查看>>
ActiveMQ, RabbitMQ和ZeroMQ 选型关注点
查看>>
王垠:完全用Linux工作
查看>>
Understanding the Router
查看>>
红米3 Flyme5.1.9.5插桩适配长期不定时更新
查看>>
MySQL 5.6 for Windows 解压缩版配置安装(转)
查看>>
组件居中显示 安卓
查看>>
delete
查看>>
sql server生成不重复的时间字符串
查看>>
DataBase 之 数据库设计六大范式
查看>>
Struts与Struts2的区别
查看>>
Zookeeper集群搭建
查看>>
EasyUI 搜索框
查看>>
If you insist running as root, then set the environment variable RUN_AS_USER=root...
查看>>
Atitit.ide技术原理与实践attilax总结
查看>>
(转)Vi命令详解
查看>>
Objective-c的内存管理MRC与ARC
查看>>
代理模式
查看>>
关于文件的INode与Java中的文件操作接口
查看>>
阿里巴巴在内蒙古旱区试水物联网灌溉技术,一年省出1.5个西湖
查看>>