首页 > Web开发 > 详细

TypeError: Object of type datetime is not JSON serializable

时间:2021-07-13 11:57:20      阅读:27      评论:0      收藏:0      [点我收藏+]

? 从MongoDB中查询了数据,使用json.dumps的时候出现TypeError: Object of type datetime is not JSON serializable,看了错误信息知道无法把日期序列化。

? 搜了解决方法:

import json
import datetime


class DateEncoder(json.JSONEncoder):
    def default(self, obj):
        if isinstance(obj, datetime.datetime):
            return obj.strftime("%Y-%m-%d %H:%M:%S")
        else:
            return json.JSONEncoder.default(self, obj)


rt = {‘_id‘: ‘abcdesasda‘, ‘create_time‘: datetime.datetime(2021, 6, 23, 2, 41, 30, 5000)}
res = json.dumps(rt, cls=DateEncoder)
print(res)

参考来源:https://blog.csdn.net/t8116189520/article/details/88657533

TypeError: Object of type datetime is not JSON serializable

原文:https://www.cnblogs.com/wjlv/p/15005019.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!