使用Django2.x版本之后时,使用pymysql踩的一些坑
执行迁移命令之后出现报错
AttributeError: 'str' object has no attribute 'decode'
解决方案
1、找到python安装目录下的django文件夹下的operations.py
2 将decode修改成encode
2024-01-16 12:02:28
执行迁移命令之后出现报错
AttributeError: 'str' object has no attribute 'decode'
1、找到python安装目录下的django文件夹下的operations.py
2 将decode修改成encode