TypeError: Object of type bytes is not JSON serializable
2021-03-02 23:29
标签:组成 read line mic json 观察 信息 not error: 在做一个数据处理的时候,需要将一个XMl的文件解析成一个json,关键是xml的文件格式和json不是一一对应的,需要我一点一点拼接关键信息,组成json文件,最后在写出json文件的时候,我采用了 报错信息中显示是类型bytes不是json的可序列化的,这时候我就去观察我在拼凑dict的时候有没有采用bytes这种类型, 经过bebug发现确实这转化base64的时候他的结果是bytes的,所以我的将bytes转成str类型即可。 我们只需要在bytes类型后面加上decode()就行,想我这个例子中 TypeError: Object of type bytes is not JSON serializable 标签:组成 read line mic json 观察 信息 not error: 原文地址:https://www.cnblogs.com/ghsticker/p/14312308.html0.问题描述
json.dump(result, json_file,indent=4)
,结果出现了以下的错误:Traceback (most recent call last):
File "D:/PycharmProjects/ocr/xmlToJson.py", line 151, in
1.问题解决
base64.b64encode(image.read()).decode()
文章标题:TypeError: Object of type bytes is not JSON serializable
文章链接:http://soscw.com/index.php/essay/59261.html