zoukankan      html  css  js  c++  java
  • 项目运行报错query = query.encode('utf-8').decode(errors='replace')

    打开D:ProgramDataAnaconda3Libsite-packagesdjangodbackendsmysqloperations.py文件 

    def last_executed_query(self, cursor, sql, params):
            # With MySQLdb, cursor objects have an (undocumented) "_executed"
            # attribute where the exact query sent to the database is saved.
            # See MySQLdb/cursors.py in the source distribution.
            query = getattr(cursor, '_executed', None)
            if query is not None:
                query = query.encode('utf-8').encode(errors='replace')
            return query

    将if query is not None:
                query = query.encode('utf-8').encode(errors='replace')

    注释掉

  • 相关阅读:
    Netty Nio启动全流程
    线性表
    java stream 原理
    SpringBoot 分布式session
    mockito
    RxJava
    HandlerMapping 详解
    SpringMVC 架构
    Spring Cloud 配置服务
    SpringBoot常用配置简介
  • 原文地址:https://www.cnblogs.com/qianzf/p/14097388.html
Copyright © 2011-2022 走看看