首页 > 解决方案 > TypeError:Decimal 类型的对象不是 JSON 可序列化的

问题描述

TypeError: Object of type Decimal is not JSON serializable


当我在其中运行时,postman api我收到上述错误,因为sales_qty是十进制,我不知道如何decimalfor循环中解析并将其作为 json 返回

from flask import Flask, jsonify

import decimal,json

result= [('V_M_001', 'KITE', 'Napkin', 1, 2, 12, 0, Decimal('0'), Decimal('0'), Decimal('0'), Decimal('0')), 
        ('V_M_001', 'KITE', 'Napkin', 2, 4, 34, 5, Decimal('1'), Decimal('4'), Decimal('0'), Decimal('0'))]
        
def fun():

   for i in result:
        data_all.append({
                            "machine_name":i.machine_name,
                            "location":i.location, 
                            "item_name":i.item_name,
                            "row_no":i.row_no,
                            "require_minimum_stk_qty":i.require_minimum_stk_qty,
                            "capacity":i.capacity,
                            "stock_qty":i.stock_qty,
                            "sales_qty":i.sales_qty,
                            "available_qty":i.available_qty,
                            "sales_day_qty":i.sales_day_qty,
                            "sales_week_qty":i.sales_week_qty
        
        })
        
    return jsonify(data_all)

fun()

输出: TypeError: Object of type Decimal is not JSON serializable

标签: pythonjsondecimalflask-sqlalchemyflask-restful

解决方案


使用带有 cls 参数的 json.dump,我相信当 json 模块不知道如何转换时,它会调用默认函数。

import json
import decimal

class Encoder(json.JSONEncoder):
    def default(self, obj):
        if isinstance(obj, decimal.Decimal): return float(obj)

json.dumps( ... , cls = Encoder)

```python

推荐阅读