ujson将python datetime对象转储为UTC时间戳(int值)。是否可以为ujson配置自定义编码器以将日期时间转换为isoformat中的sting?
由于
答案 0 :(得分:1)
要在json序列化之前扩展Daria的将datetime对象转换为ISO格式字符串的解决方案,您可以编写一个包装器,负责在加载json数据时将日期转换回datetime对象。
答案 1 :(得分:0)
看起来ujson不允许这样做。 ujson
只接受3种编码选项:encode_html_chars
,ensure_ascii
和double_precision
。
可以使用其他lib,例如simplejson,但看起来ujson
是最快的。
解决方案:在json序列化之前将python datetime对象转换为ISO格式的字符串。