溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

幾個(gè)django 2.2和mysql使用的坑

發(fā)布時(shí)間:2020-06-10 20:08:47 來(lái)源:網(wǎng)絡(luò) 閱讀:2778 作者:SmilePad 欄目:開(kāi)發(fā)技術(shù)

可能是由于Django使用的MySQLdb庫(kù)對(duì)Python3不支持,我們用采用了PyMySQL庫(kù)來(lái)代替,導(dǎo)致出現(xiàn)各種坑,特別是執(zhí)行以下2條命令的是時(shí)候:

python manage.py makemigrations
or
python manage.py inspectdb

第一個(gè)坑(提示你的mysqlclient版本過(guò)低)

無(wú)聊你是否執(zhí)行pip install mysqlclient安裝的最新版的,都拋出:

django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.3 or newer is required; you have 0.7.11.None

MD,LZ看到這錯(cuò)誤太想罵人了,沒(méi)辦法采取網(wǎng)上的方法,注釋大法!

找到Python安裝路勁下的Python36-32\Lib\site-packages\django\db\backends\mysql\base.py文件

將文件中的如下代碼注釋?zhuān)赡苄柘汝P(guān)閉pycharm IDE)

if version < (1, 3, 3):
    raise ImproperlyConfigured("mysqlclient 1.3.3 or newer is required; you have %s" % Database.__version__)

第二個(gè)坑(str類(lèi)型沒(méi)有decode方法)

對(duì)對(duì)對(duì),py3默認(rèn)str是unicode編碼,通過(guò)encode方法編碼成bytes類(lèi)型,后者才有decode解碼方法。
提示錯(cuò)誤來(lái)源:Python36\lib\site-packages\django\db\backends\mysql\operations.py", line 149, in last_executed_query

  • 這里網(wǎng)上一搜一堆的把encode改成decode方法,我靠,這誰(shuí)的腦洞無(wú)敵了

源方法內(nèi)容(pip安裝的django 2.2.1原封不動(dòng)的內(nèi)容):

    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.decode(errors='replace')
        return query

通過(guò)print大法輸出query結(jié)果,內(nèi)容為

SELECT @@SQL_AUTO_IS_NULL

數(shù)據(jù)類(lèi)型為str
  • 這里網(wǎng)上還有注釋大法,LZ不知道注釋了if的后遺癥是啥有沒(méi)有影響,于是也沒(méi)采納。

于是我去django的github去翻這個(gè)文件這個(gè)方法的最新/歷史版本,結(jié)果最新master分支內(nèi)容如下:

    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.
        # MySQLdb returns string, PyMySQL bytes.
        return force_str(getattr(cursor, '_executed', None), errors='replace')

看函數(shù)名,應(yīng)該是強(qiáng)制去把SQL轉(zhuǎn)換成str了
我靠!??!這尼瑪官網(wǎng)2.2.1/2.2.2(當(dāng)前最新版)的包不是害人么,記得該文件上面引入下這個(gè)方法

from django.utils.encoding import force_str

然后再執(zhí)行managa.py命令,可以了

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI