python3运行报错:TypeError: Object of type 'type' is not JSON serializable解决方法(详细)
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
首先网上大多数博客没有明确说明问题的来源
这个问题是由于json.dumps()函数引起的。dumps是将dict数据转化为str数据,但是dict数据中包含byte数据所以会报错。
解决:编写一个解码类 遇到byte就转为str
1.MyEncoder.py
import json
class MyEncoder(json.JSONEncoder):
def default(self, obj):
if isinstance(obj, bytes):
return str(obj, encoding='utf-8')
return json.JSONEncoder.default(self, obj)
2.在你发生错误的文件当中 比如a.py
第一步:
from MyEncoder import MyEncoder
第二步:
将json.dumps(data)改写为json.dumps(data,cls=MyEncoder,indent=4)
3.至于json.dumps函数里面的cls,indent参数请自行查询其他博客。
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
3 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)