使用json.dumps时报错“TypeError: Object of type xxx is not JSON serializable”

参考链接:https://www.jianshu.com/p/0883d6f4bec3

在导入Python json包,调用json.dump/dumps函数时,可能会遇到TypeError: Object of type xxx is not JSON serializable错误,也就是无法序列化某些对象格式。


【解决办法】自定义序列化方法

报什么错就在自定义类里加啥:

使用json.dumps时报错“TypeError: Object of type xxx is not JSON serializable”_第1张图片

然后在调用json.dump/dumps时,指定使用自定义序列化方法:

你可能感兴趣的:(使用json.dumps时报错“TypeError: Object of type xxx is not JSON serializable”)