TypeError: Object of type 'int32' is not JSON serializable ——已解决

Posted ^西江月$

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TypeError: Object of type 'int32' is not JSON serializable ——已解决相关的知识,希望对你有一定的参考价值。

将模型用flask封装,返回json时报错:TypeError: Object of type ‘int32‘ is not JSON serializable

网上搜索出的解决方案:重写json.JSONEncoder

class MyEncoder(json.JSONEncoder):
    def default(self, obj):
        if isinstance(obj, numpy.integer):
            return int(obj)
        elif isinstance(obj, numpy.floating):
            return float(obj)
        elif isinstance(obj, numpy.ndarray):
            return obj.tolist()
        else:
            return super(MyEncoder, self).default(obj)

 

json.dumps(data,cls=MyEncoder)

 

以上是关于TypeError: Object of type 'int32' is not JSON serializable ——已解决的主要内容,如果未能解决你的问题,请参考以下文章

TypeError:object of type ‘WebElement’ has no len()

TypeError: Object of type datetime is not JSON serializable问题解决

TypeError: Object of type datetime is not JSON serializable问题解决

TypeError: Object of type 'int32' is not JSON serializable ——已解决

将 pandas 数据附加到 hdf 存储,得到 'TypeError: object of type 'int' has no len()' 错误

python报"TypeError: object of type 'Greenlet' has no len()"