json decimal and datetime

Posted Go_Forward

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json decimal and datetime相关的知识,希望对你有一定的参考价值。

python json模块默认不能序列化decimal和datetime数据,可以通过自定义一个序列化的类实现:

link: http://www.cnblogs.com/buxizhizhoum/p/7607036.html

import json
import datetime


class
SupplementaryEncoder(json.JSONEncoder): def default(self, obj): if isinstance(obj, decimal.Decimal): # for decimal return float(obj) elif isinstance(obj, datetime.datetime): # for datetime return obj.strftime("%Y-%m-%d %H:%M:%S") return json.JSONEncoder.default(self, obj)

test_dict = {"a": datetime.datetime.now()}
res = json.dumps(test_dict, cls=SupplementaryEncoder)

 

以上是关于json decimal and datetime的主要内容,如果未能解决你的问题,请参考以下文章

TypeError: ("unsupported operand type(s) for -: 'decimal.Decimal' and 'float'", 'occurred

decimal and double ToString problem

json 不能 dumps Decimal 解决办法

flask json 格式下 decimal 不是正确格式的问题

Python JSON 序列化一个 Decimal 对象

使用 Json.NET 代理 int、float 和 decimal