the JSON object must be str, bytes or bytearray, not list
时间: 2023-05-20 07:02:07 浏览: 306
详解python string类型 bytes类型 bytearray类型
这个错误提示通常是因为你在使用 json.dumps() 函数时,传入了一个列表类型的对象,而该函数只接受 str、bytes 或 bytearray 类型的对象作为参数。你需要将该列表对象转换为字符串类型,然后再传入 json.dumps() 函数中。你可以使用内置函数 str() 将列表转换为字符串,或者使用 json.dump() 函数将列表直接转换为 JSON 格式的字符串。
阅读全文