python datetime.datetime is not JSON serializable 报错问题解决
Posted 不不田鼠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python datetime.datetime is not JSON serializable 报错问题解决相关的知识,希望对你有一定的参考价值。
原文:https://blog.csdn.net/suibianshen2012/article/details/64444030
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‘) elif isinstance(obj,date): return obj.strftime("%Y-%m-%d") else: return json.JSONEncoder.default(self,obj)
以上是关于python datetime.datetime is not JSON serializable 报错问题解决的主要内容,如果未能解决你的问题,请参考以下文章