model_config = json.loads(model_config.decode('utf-8')) AttributeError: 'str' object has no attribute 'decode'
时间: 2023-11-25 22:04:44 浏览: 112
Python库 | msgpack_python-0.2.0-py2.7-win32.egg
5星 · 资源好评率100%
这个错误是因为在Python 3中,字符串已经默认为Unicode编码,不再需要使用decode()方法。因此,你需要将代码中的.decode('utf-8')删除,直接使用json.loads(model_config)即可。如果你的model_config是一个bytes类型的对象,你可以使用model_config.decode('utf-8')将其转换为字符串类型。
阅读全文