[Python - Error] Object of type Decimal is not JSON serializable

2021/11/27 1:10:11

本文主要是介绍[Python - Error] Object of type Decimal is not JSON serializable,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

json遇到Decimal 型数据无法正确处理
解决方案
import json

result = [
{'name': '小红', 'age': 26, 'balance': decimal.Decimal(21.56)},
{'name': '小明', 'age': 24, 'balance': decimal.Decimal(31.23)},
]
class DecimalEncoder(json.JSONEncoder):
def default(self, o):
if isinstance(o, decimal.Decimal):
return float(o)
super(DecimalEncoder, self).default(o)

# jsonData是结合上下文自己定义的
# ensure_ascii=False,显示中文
result = json.dumps(result, cls=DecimalEncoder, ensure_ascii=False)
print(result)

 



这篇关于[Python - Error] Object of type Decimal is not JSON serializable的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程