說明:
已拋棄django,使用flask,此文不做更新了。——2020-05-06_記
版本-django2.1
並非所有知識點,知識自己在開發過程中使用的做記錄,方便後期查閱
模型中foreignkey中引數related_name的設定
查詢模型的建表原生sql語句
1 模型中foreignkey中引數related_name的設定
related_name是關係欄位的名稱查詢使用。b模型中有字段是a的外來鍵,只要有a的物件,就能使用related_name的定義a.[related_name]來查出對應的b模型。
2 模型的建表原生sql語句
只要命令列輸入如下:
Django知識點總結 一
1.django專案中python的搜尋路徑 python的搜尋路徑是指使用import語句時,python搜尋的系統目錄清單 檢視python的搜尋路徑 結果中的第一項為空字串,表示當前工作目錄.在專案中,python先搜尋專案中的檔案,在搜尋系統檔案 2.django的url模式 3.url h...
Django知識點總結 二
1.django的模板系統 render to response import django.shortcuts.render to response render to response的第乙個引數必須是模板.如果給定第二個引數,第二個引數必須是為該模板建立context時所用的字典 如果不提供第...
Django注意知識點(二)
2.於 settings.py 檔案中增添如下配置 1 富文字配置 2 tinymce default config view code 3.於 工程目錄下的urls.py檔案中增添如下路徑 1 re path tinymce include tinymce.urls tinymce namespa...