Python&django系列(亲测有效):Django2.2报错——AttributeError: ‘‘str‘‘ object has no attribute ‘‘decode‘‘

Django2.2报错——AttributeError: ''str'' object has no attribute ''decode''




操作

准备将 Django 连接到 MySQL,在命令行输入命令

python manage.py makemigrations 

输入命令后报错:

AttributeError: 'str' object has no attribute 'decode'

python 3中只有unicode str,所以把decode方法去掉了。你的代码中,f1已经是unicode str了,不用decode

如果文件内容不是unicode编码的,要先以二进制方式打开,读入比特流,再解码。

方法说明

<
posted @ 2024-08-27 17:02  坦笑&&life  阅读(6)  评论(0编辑  收藏  举报  来源