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
编码的,要先以二进制方式打开,读入比特流,再解码。
方法说明
<