Fork me on GitHub

python字符

毕设web项目启动时,报错

1
2
3
  File "D:\Program Files (x86)\Python\lib\site-packages\django\db\backends\mysql\operations.py", line 146, in last_executed_query
query = query.decode(errors='replace')
AttributeError: 'str' object has no attribute 'decode'

找到错误代码(line146):query = query.encode(errors=’replace’)

解决方法:把decode改为encode即可。

本文标题:python字符

文章作者:LiuXiaoKun

发布时间:2020年01月28日 - 13:01

最后更新:2020年01月28日 - 13:01

原始链接:https://LiuZiQiao.github.io/2020/01/28/python字符/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

0%