TypeError: Object of type datetime is not JSON serializable问题解决
2021-02-12 15:15
标签:ftime 序列 对象 span back div ali pre 类型 在进行django开发view视图时,如果数据库字段是 datetime类型,在JSON序列化返回时,会出现异常 字段为datetime,无法序列化对象 TypeError: Object of type datetime is not JSON serializable问题解决 标签:ftime 序列 对象 span back div ali pre 类型 原文地址:https://www.cnblogs.com/fengzi-2016/p/13030379.html前提回顾
异常现象
TypeError: Object of type datetime is not JSON serializable
异常原因
‘create_time‘: datetime.datetime(2020, 6, 1, 17, 27, tzinfo=
问题解决
# 对时间进行格式化
# create_time 数据库表字段名for t in Students.objects.all():
‘create_time‘: t.create_time.strftime(‘%Y-%m-%d %H:%M:%S‘),
文章标题:TypeError: Object of type datetime is not JSON serializable问题解决
文章链接:http://soscw.com/index.php/essay/54489.html