TypeError: Object of type datetime is not JSON serializable问题解决
Posted 不吃浅水鱼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TypeError: Object of type datetime is not JSON serializable问题解决相关的知识,希望对你有一定的参考价值。
前提回顾
在进行django开发view视图时,如果数据库字段是 datetime类型,在JSON序列化返回时,会出现异常
异常现象
TypeError: Object of type datetime is not JSON serializable
异常原因
‘create_time‘: datetime.datetime(2020, 6, 1, 17, 27, tzinfo=<UTC>)
字段为datetime,无法序列化对象
问题解决
# 对时间进行格式化
# 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问题解决的主要内容,如果未能解决你的问题,请参考以下文章
TypeError:object of type ‘WebElement’ has no len()
TypeError: Object of type datetime is not JSON serializable问题解决
TypeError: Object of type datetime is not JSON serializable问题解决
TypeError: Object of type 'int32' is not JSON serializable ——已解决
将 pandas 数据附加到 hdf 存储,得到 'TypeError: object of type 'int' has no len()' 错误