Django报错:AttributeError: ‘str‘ object has no attribute ‘decode‘

使用Django2.x版本之后时,使用pymysql踩的一些坑:

导入pymysql,出现如下错误:

Django报错:AttributeError: ‘str‘ object has no attribute ‘decode‘_第1张图片

解决方法 

1、找到python安装目录下的django文件夹下的operations.py;

2、将decode修改成encode。

Django报错:AttributeError: ‘str‘ object has no attribute ‘decode‘_第2张图片

 

你可能感兴趣的:(Django,django,python)