健康金针菇

文章
8
资源
0
加入时间
2年10月21天

解决TypeError: Object of type xxx is not JSON serializable语法错误的问题

问题描述:在导入Python json包,调用json.dump/dumps函数时,可能会遇到TypeError: Object of type xxx is not JSON serializable错误,也就是无法序列化某些对象格式。同时解决:默认的编码函数很多数据类型都不能编码,因此可以自己写一个encoder去继承jsonencoder ,这样就能够进行编码了class MyEncoder(json.JSONEncoder): def default(s...